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