#include <stdio.h> int main() { char *ch = "Interview Mania\n"; ch[9] = '.'; printf("%s\n", ch); return 0; }
Segmentation fault
Previous Question Next Question
Your comments will be displayed only after manual approval.