Name of function is case sensitive in c programming


C programming language is case sensitive. Function is not exception of this. 

Example:

#include<stdio.h>
int main(){
   CQUESTIONBANK();
   return 0;
}
int cquestionbank(){
   printf("BLOCK 1");
   return 0;
}
int CQUESTIONBANK(){
   printf("BLOCK 2");
   return 1;
}

Output: BLOCK 2

No comments: