#include <stdio.h>
#include <limits.h>
int main()
{
printf("Size of char: %d bytes\n", sizeof(char));
printf("Size of int: %d bytes\n", sizeof(int));
printf("Size of float: %d bytes\n", sizeof(float));
printf("Size of double: %d bytes\n", sizeof(double));
printf("\n");
printf("Range of char: %d to %d\n", CHAR_MIN, CHAR_MAX);
printf("Range of int: %d to %d\n", INT_MIN, INT_MAX);
return 0;
}