Print sizeof(char), sizeof(int) and sizeof(double).
Knowing the byte width of every type is mandatory for embedded work and kernel code. Use the `sizeof` operator (compile-time, not a function) and print all three values with %zu.
Hint: `printf("%zu\n", sizeof(char));`Sign in to save your code and track progress across devices.