C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 33 -1 1 Compilation Error 0 33 -1 1 Compilation Error 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 15 12 10 None of these 11 15 12 10 None of these 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. Sequential None of these Sequential and Random Random Sequential None of these Sequential and Random Random ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54554 45445 54544 45545 54554 45445 54544 45545 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? power(2, x) pow(2, x) pow(x, 2) sqr(x) power(x, 2) power(2, x) pow(2, x) pow(x, 2) sqr(x) power(x, 2) ANSWER DOWNLOAD EXAMIANS APP
C Programming If integer needs two bytes of storage, then maximum value of an unsigned integer is 215 None of these 216 216 – 1 215 – 1 215 None of these 216 216 – 1 215 – 1 ANSWER DOWNLOAD EXAMIANS APP