Espy
Wanderer
|
|
|
#365
|
|
#include <stdio.h>
#include <limits.h>
int main()
{
printf("short int...\tsize: %d bytes \t", sizeof( short int ) );
printf("%d to %d \n", SHRT_MAX , SHRT_MIN );
printf("long int...\tsize: %d bytes \t", sizeof( long int ) );
printf("%d to %d \n", LONG_MAX , LONG_MIN );
printf("char...\tsize: %d byte \t", sizeof(char));
printf("float...\tsize: %d bytes \t", sizeof(float));
printf("double...\tsize: %d bytes \t", sizeof(double));
return 0;
}
........Does that even need explaining?
Step in front of a runaway train
____Just to feel alive again
â•â•â•â•â•â•â•? ?•â•â•â•â•â• â•â•â•â•â•â•â•? ?•â•â•â•â•â•
Pushing forward through the night_____
Aching chest and blurry sight
|
|
Posted 06-29-2012, 03:04 AM
|
|
|