codewithc

CWC

628 Articles

C Program for example of static variable

Heyyy coders! ? How's it going? Ready to deep dive into something

CWC CWC

C Program to read a string and print the number of characters in each word of the string

#include<stdio.h> #include<conio.h> #include<string.h> main( ) { char s; int i,l,nc=0; clrscr( );

CWC CWC

C Program to accept two numbers and print the sum of given two numbers by using pointers

#include<stdio.h> #include<conio.h> main( ) { int a, b,c; clrscr( ); a=10; b=20;

CWC CWC

C Program to accept two 3 dimensional array and store subtraction of those two arrays into third array

#include<stdio.h> #include<conio.h> main( ) { int a,b,c,i,j; clrscr( ); for(i=0;i<3;i++) for(j=0;j<3;j++) {

CWC CWC

C Programming – What Are the Different Storage Types Supported

In C programming language, every variable has a storage class which chooses

CWC CWC

C Program to accept a single dimensional array and print them by using pointers

#include<stdio.h> #include<conio.h> main( ) { int a,*b,i; clrscr( ); b=&a; for(i=0;i<=4;i++) {

CWC CWC
en_USEnglish