Question 1
Answer saved
Marked out of 1.00
What wil be the output of the following program?
1 #include<stdio.h>
2
3
#include<string.h>
#include<ctype.h>
4
int main()
5{
6
7
8
9
char note[]="Meet me at 7pm";
char *ptr;
ptr=note;
note [7]='\0';
10
puts(++ptr);
11
return 0;
}
12
Oa. Meet m
Ob. eet me a
c. eet me
Od. Meet me
Clear my choice