Untitled

mail@pastecode.io avatar
unknown
c_cpp
a month ago
398 B
1
Indexable
Never

#include <stdio.h>
#include <string.h>



int main() {
// \0

char nome[10];

char saluto[] = "Ciao";

int lunghezza = strlen(saluto);

char nome2[20]= "Mario";
char cognome[] = "Rossi";
strcat(nome2, " ");
strcat(nome2, cognome);
//printf("%s\n", nome2);

char str1[] = "Ciao";
char str2[] = "Ciao";

if(strcmp(str1, str2) == 0){
    printf("Holaaa");
}else{
    printf("Boh");
}

    return 0;
}
Leave a Comment