#include <stdio.h> void main() { char *ptr1= "Interview Mania"; char *ptr2 = ptr1; printf("%c %c", ptr2[0], ptr1[10]); }
I M
Previous Question Next Question
Your comments will be displayed only after manual approval.