constchar VOCAL[5][2] = {"a", "i", "u", "e", "o"};
if(strcmp(input[1], VOKAL[1]) == 0)
printf("The word is same");
ERROR
if(input[1] == vokal[1])
printf("The word is same");
ERROR TOO
Please help me
In both cases you are comparing a character to a C string. You need to compare like types.
Either make VOCAL an array of characters rather than an array of strings, or compare to the first character in each string: if(input[1] == VOCAL[1][0])
edit: Too late. Looks like you figured it out on your own. Congrats!