#include <stdio.h>
int main() {
printf("literal int size: %d \n", sizeof(7));
printf("literal double size: %d \n", sizeof(7.14));
printf("literal char size: %d \n", sizeof('A'));
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: