#include <stdio.h> void fun(char *p) { p++; p[3] = 'N'; printf("%c\n", *p); } void main() { char s[] = "WELCOME"; fun(s); }
E
Previous Question Next Question
Your comments will be displayed only after manual approval.