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 Determine Output:void main(){ char *p; p="%dn"; p++; p++; printf(p-2, 300);} None of These Error 300 %d\n None of These Error 300 %d\n ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? skip continue break None of these resume skip continue break None of these resume ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define square(x) x*x void main(){ int i; i = 64/square(4); printf("%d", i); } None of These 16 4 64 None of These 16 4 64 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? pow(2, x) sqr(x) power(2, x) power(x, 2) pow(x, 2) pow(2, x) sqr(x) power(2, x) power(x, 2) pow(x, 2) ANSWER DOWNLOAD EXAMIANS APP
C Programming C was primarily developed as General purpose language None of these Data processing language System programming language General purpose language None of these Data processing language System programming language ANSWER DOWNLOAD EXAMIANS APP