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;
Answer: A
This is the safe way to store the same value throughout a contiguous sequence of elements in a character array.