C
c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Created by DipTheDi
#include <stdio.h>
int main() {
printf("int: %d \n", sizeof(int));
printf("float: %d \n", sizeof(float));
printf("double: %d \n", sizeof(double));
printf("char: %d \n", sizeof(char));
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run