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