Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include<stdio.h>
- #include <stdlib.h>
- #include <string.h>
- int main(){
- char S[101];
- scanf("%s", S);
- char E[101];
- scanf("%s", E);
- printf("%s", strcat(S, E));
- printf("\n");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment