Latest C Tutorials News
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( );…
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;…
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++) {…
C Programming – What Are the Different Storage Types Supported
In C programming language, every variable has a storage class which chooses…
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++) {…
C Program to accept two strings and compare those two strings
#include<stdio.h> #include<conio.h> int strcomp (char *pt1, char *pt2); void read-string(char*pt); main( )…