Multiple choice The statement printf (“%d”, sizeof(“”)); prints an error message 0 garbage 1 Reveal answer Fill a bubble to check yourself D Correct answer Explanation The sizeof operator returns the size of the string literal, including the null terminator character ('\0'). An empty string "" contains only the null terminator, so its size is 1.