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