私が間違っていることを教えてください
//I'm trying to get the number of the month by sending its name.
#include <stdio.h>
私の機能
int monthstr2num (char month[]){
if (month == "September")
return 8;
}
int main (){
char month []={"September"};
int num;
num = monthstr2num (month);//func call
37814040のような間違った出力を表示します
printf ("%d", num);
return 0;
}