C Programming Determine output:void main(){ int const *p=5; printf("%d", ++(*p));} Garbage Value 5 Compiler Error 6 Garbage Value 5 Compiler Error 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is the correct way of declaring a float pointer: float *ptr; *float ptr; float ptr; None of these float *ptr; *float ptr; float ptr; None of these ANSWER DOWNLOAD EXAMIANS APP
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 Runtime error 4 5 6 7 Syntax error 1 2 3 4 4 Runtime error 4 5 6 7 Syntax error 1 2 3 4 ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is call by reference call by value result call by value None of these. call by reference call by value result call by value None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 None of these 1 2 3 4 5 6 7 8 9 4 5 6 7 8 9 1 2 3 10 4 5 6 7 8 9 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? bcdefg cdefg fg efg defg bcdefg cdefg fg efg defg ANSWER DOWNLOAD EXAMIANS APP