View Single Post
Old 17-08-2007, 05:32 PM   #9 (permalink)
Garbage
God of Mistakes...
 
Garbage's Avatar
 
Join Date: Dec 2005
Location: Pune, Maharashtra
Posts: 1,923
Default Re: Guys help me in C

If u r talking abt the Data type wise length, then use "sizeof" operator.

ex.
Code:
void main()
{
     int a;
     float b;
     
     printf ("Size of Interger is : %d", sizeof(a));
     printf ("\nSize of Float is : %d", sizeof(b));
   
     getch();
}
__________________
Registered Linux User #468778
----------------------------------
http://twitter.com/_Garbage_
Garbage is offline