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 is the output of the following statements?int i = 0;printf("%d %d", i, i++); None of these 0 1 1 1 1 0 0 0 None of these 0 1 1 1 1 0 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Arithmetic expressions Local variables Both of the above R-values Members of a structure Arithmetic expressions Local variables Both of the above R-values Members of a structure 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;} 5 Error 6 9 None of these 5 Error 6 9 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ int short float long char int short float long char ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int i=10; printf("i=%d", i); { int i=20; printf("i=%d", i); i++; printf("i=%d", i); } printf("i=%d", i);} 10 20 21 20 10 20 21 10 10 10 11 11 10 20 21 21 10 20 21 20 10 20 21 10 10 10 11 11 10 20 21 21 ANSWER DOWNLOAD EXAMIANS APP