C Programming Reference


C Programming Reference >> C Basic Tutorials >> C Keywords Home >>

intui

30/12/06 -  Views - Ratings :   3.48 of 5 / 155 Votes    

This is used to declare a integer data type.Integer data type is of 2 or 4 bytes depending upon the Operating System.

Code -
void function (void)
{
int a = 10;
int b;
b = scanf ("%d", &b);
printf ("%d %d",a, b);
}

Back To Top


      

 

 

© 2006 cencyclopedia.com