#include <stdio.h> int main() { char *s1 = "Hey Bro...\n"; char s2[] = "How are u?\n"; strcpy(s2, s1); printf("%s\n", s2); return 0; }
Hey Bro...
Previous Question Next Question
Your comments will be displayed only after manual approval.