I am checking input and need a way to compare to the actual word 'int'.
Example:
char t[10] = "int";
if (t == 'int'){
printf("We have an integr");
}
I'm not sure if this is possible or not, still learning the ropes of C. Thanks for the help!