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