5 Apr
2001
5 Apr
'01
3:12 p.m.
Hi try this: sizes.c #include <stdio.h> main() { printf("\ttype sizes:\n"); printf("char\tint\tlong\tfloat\tdouble\tlong double\n"); printf("%3d\t%3d\t%3d\t%3d\t%3d\t%3d\n", sizeof( char ), sizeof( int ), sizeof( long ), sizeof( float ), sizeof( double ), sizeof( long double ) ); } results here: type sizes: char int long float double long double 1 4 4 4 8 12 hope this helps Russ