C Programming Reference >> C Basic Tutorials >> C Keywords Home >> intui 30/12/06 - Views - Ratings : 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);
}
|