I have a problem when trying to perform a conditional with a string, what I try is to ask the city first and depending on what the user writes, I do the conditional code, but it does not work, it takes me directly to else
#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;
}