C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 1 33 Compilation Error 0 -1 1 33 Compilation Error 0 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} Compiler Error will print Hello World Can't Say None of These Compiler Error will print Hello World Can't Say None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is None of these. call by value call by reference call by value result None of these. call by value call by reference call by value result 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) 10 30 None of these 50 15 10 30 None of these 50 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming If ASCII value of 'x' is 120, then what is the value of the H, ifH = ('x' – 'w' ) / 3; 3 2 0 1 3 2 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 32 24 36 40 30 32 24 36 40 30 ANSWER DOWNLOAD EXAMIANS APP