C Programming What will be printed when this program is executed?int f(int x){ if(x <= 4) return x; return f(--x);}void main(){ printf("%d ", f(7)); } 4 5 6 7 Runtime error Syntax error 4 1 2 3 4 4 5 6 7 Runtime error Syntax error 4 1 2 3 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includevoid main(){ float arr[] = {12.4, 2.3, 4.5, 6.7}; printf("%d", sizeof(arr)/sizeof(arr[0]));} None of these 5 6 4 7 None of these 5 6 4 7 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"); 33 -1 0 Compilation Error 1 33 -1 0 Compilation Error 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? / * % + None of these / * % + None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of following program code?#include int main(void){ char p; char buf[10] = {1, 2, 3, 4, 5, 6, 9, 8}; p = (buf + 1)[5]; printf("%d", p); return 0;} 9 5 6 None of these Error 9 5 6 None of these Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Hello None of These H Some Address will be printed Hello None of These H Some Address will be printed ANSWER DOWNLOAD EXAMIANS APP