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); } 64 4 16 None of These 64 4 16 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} 10012 100 Syntax error g##g2 Runtime error 10012 100 Syntax error g##g2 Runtime error ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is laststr() strrchr() strstr() strnstr() None of these laststr() strrchr() strstr() strnstr() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function calculates the square of 'x' in C? power(x, 2) power(2, x) pow(x, 2) pow(2, x) sqr(x) power(x, 2) power(2, x) pow(x, 2) pow(2, x) sqr(x) ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 10 None of these 0 1 6 10 None of these 0 1 6 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; }} GOOD Compiler Error None of These GOOD BAD GOOD Compiler Error None of These GOOD BAD ANSWER DOWNLOAD EXAMIANS APP