#include <stdio.h> #define Y(M) printf("The size of "#M" is %zu bytes.\n", sizeof(M)) int main() { Y(short); Y(int); Y(long); Y(long long); }