I have this code:
Note:
boom.ok[1][0] has the character "a" while boom.ok[[tempr[0]][0] contains the string "ay".
if ( strcmp(&boom.ok[1][0],&boom.ok[[tempr[0]][0]) == 1)
printf("Hello");
if ( strcmp(&boom.ok[1][0],&boom.ok[[tempr[0]][0]) == 0)
printf("Hello");
None of these statement prints hello. Why?