#include <stdio.h> void main() { char *str = "PRAYAG"; char *ptr = str; printf("%c %c", *ptr, str[2]); }
P A
Previous Question Next Question
Your comments will be displayed only after manual approval.