C - Variables and Data Types
Consider the following C code snippet:
What is the expected output on a typical 64-bit system?
printf("%zu", sizeof(long));What is the expected output on a typical 64-bit system?
printf("%zu", sizeof(long));long is 8 bytes (64 bits).sizeof(long)sizeof operator returns the size in bytes, so it returns 8.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions