Q. What is the output of: printf("%d", sizeof(char)); (A) 0 (B) 1 (C) 2 (D) Depends on compiler ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (B) 1 Explanation: Size of char is always 1 byte in C.