C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} 16 64 None of These 4 16 64 None of These 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following code:void main(){ int a[5] = {6,8,3,9,0}, i=0; if(i != 0) { break; printf("%d", a[i]); } else printf("%d", a[i++]);}What is the output of the above program? 8 No output Syntax error 6 Runtime error 8 No output Syntax error 6 Runtime error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following code?void main(){ int arr[10] = {1,2,3,4,5}; printf("%d", arr[5]);} 5 None of these 0 6 Garbage Value 5 None of these 0 6 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: None of these float *ptr; float ptr; *float ptr; None of these float *ptr; float ptr; *float ptr; ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); -1 0 33 Compilation Error 1 -1 0 33 Compilation Error 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} Error h hi Garbage Value hi followed by garbage value Error h hi Garbage Value hi followed by garbage value ANSWER DOWNLOAD EXAMIANS APP