#include <stdio.h> int main() { char s[15] = "Interview"; char *s1 = " Mania"; strcat(s, s1); printf("%s %d", s, s[15]); }
Interview Mania 0
Previous Question Next Question
Your comments will be displayed only after manual approval.