Posts by Brian Natã • 1 point
1 post
-
0
votes6
answers1851
viewsA: Interlink two strings into one vector
I’m new at this, mine’s like this: #inlcude <stdio.h> int main() { char string1[100] ,string2[100]; int i; for(i=0 ; i<100 ; i++){ string1[i]=0; string2[i]=0; } scanf("%s" ,string1);…