SDDD
C
#include <stdio.h>
#include <string.h>
int main() {
char str1[10];
char str2[10];
scanf("%s",str1);
scanf("%s",str2);
for(int i=0;i<strlen(str1);i++){
printf("%c",str1[i]);
}
printf("&");
for(int i=0;i<strlen(str2);i++){
printf("%c",str2[i]);
}
}
Output
Embed on website
To embed this program on your website, copy the following code and paste it into your website's HTML:
Comments
This comment belongs to a banned user and is only visible to admins.
This comment belongs to a deleted user and is only visible to admins.