Multiple Choices
Answer (Choose 1 answer)
What is the output of this program?
#include <stdio.h>int main(void)
{
char note[] = "Meet me at 7pm";
char *ptr;
ptr = note;
note[7] = '\0';
puts(++ptr);
return 0;
}
A. eet me
B. Meet me
C. Meet m
D. eet me a