Hi guys , i am new to C and i am looking for help
basically ,i have this
subjeCode[][9]={"UMA 1162","UMB 1052","BSM 1913","BDA 1602","BEE 1113","BEE 1122","UMB 1011","\0"}; and i want the user to enter the code then the program checks whether or not it is there!! so Please can any one tell me i tried using strcmp ,but i didnt know how to do it !!!!

Thanks in advance !!

int i;

for ( i = 0; subjeCode[i][0] != '\0'; i++ ) {
  if ( strcmp ( subjeCode[i], input ) == 0 )
    break;
}

if ( subjeCode[i][0] != '\0' ) {
  /* Found */
}
else {
  /* Not found */
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.