C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 1 33 0 Compilation Error -1 1 33 0 Compilation Error -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} None of These will print Hello World Can't Say Compiler Error None of These will print Hello World Can't Say Compiler Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Function scope Block scope No scope at all Local scope File scope Function scope Block scope No scope at all Local scope ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A special symbol other than underscore Both of the above A number An alphabet A special symbol other than underscore Both of the above A number An alphabet ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 0 3 Garbage Value 1 2 0 3 Garbage Value 1 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){float num=5.6;switch(num){case 5:printf("5");case 6:printf("6");default : printf("0");break;}printf("%d", num);} 5 5.600000 6 5.600000 0 5.600000 Complier error 5 5.600000 6 5.600000 0 5.600000 Complier error ANSWER DOWNLOAD EXAMIANS APP