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