What is the maximum number that can be printed using printf

1.5 Suppose that x is initialized as:
short int x; /* assume x is 16 bits in size */
What is the maximum number that can be printed using printf (“%d\n”, x),
A) 127
B) 128
C) 255
D) 32,767


Leave a Reply