C Programming Reference


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

longui

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

 

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;  
}

Back To Top


      

 

 

© 2006 cencyclopedia.com