I have a problem when trying to make a conditional with a string, what I try is first to ask the city and depending on what the user writes, I make the conditional that I have in the code, but it doesn't work for me, it takes me directly toelse
#include "stdio.h"
int main (){
char ciudad[0];
printf("Digite el nombre de una ciudad: ");
scanf("%s",&ciudad);
if (ciudad == "medellin"){
printf("En este momento en %s esta lloviendo",ciudad);
}else if (ciudad == "bucaramanga"){
printf("En este momento en %s esta haiendo un dia caluroso",ciudad);
}else{
printf("%s no esta en nuestra base de datos",ciudad);
}
return 0;
}
The comparison of Strings must be done through the strcmp() method