C Programming Reference >> C Basic Tutorials >> C Keywords Home >> longui 30/12/06 - Views - Ratings : This a type modifier used with int and double to increase its range by increasing its size. Long int is of 4 bytes while long double is of 16 bytes. Code - void function ( void)
{
auto int a = 10;
auto int b;
b = a;
}
|