1.

What will be the output of the following C code?

 void *memset(void *c, int c, size-t n) unsigned char ch = c; unsigned char *su; for (su = s; 0 < n> *su = ch;

A. store c throughout unsigned char s[n]
B. store c throughout signed char s[n]
C.
D. D.
Answer» B. store c throughout signed char s[n]


Discussion

No Comment Found

Related MCQs