C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 1 33 0 -1 Compilation Error 1 33 0 -1 Compilation Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#include#includevoid main(){ char str[] = "Exam\0Veda"; printf("%s", str);} Exam Exam Veda Exam\0Veda None of these Veda Exam Exam Veda Exam\0Veda None of these Veda ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following type definition.typedef char x[10];x myArray[5];What will sizeof(myArray) be ? (Assume one character occupies 1 byte) 30 None of these 15 50 10 30 None of these 15 50 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} will print Hello World Compiler Error Can't Say None of These will print Hello World Compiler Error Can't Say None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 36 32 40 30 24 36 32 40 30 24 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=1, j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; }} None of These Compiler Error GOOD BAD GOOD None of These Compiler Error GOOD BAD GOOD ANSWER DOWNLOAD EXAMIANS APP