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
C Programming What will be the output of the following program code?main(){ static int var = 5; printf("%d ", var--); if(var) main();} 5 5 5 5 5 Infinite Loop Compilation Error 5 4 3 2 1 None of these 5 5 5 5 5 Infinite Loop Compilation Error 5 4 3 2 1 None of these 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 the output of the given program?#includevoid main(){int value1, value2=100, num=100;if(value1=value2%5) num=5;printf("%d %d %d", num, value1, value2);} 100 100 100 5 0 20 100 0 100 5 0 100 100 5 100 100 100 100 5 0 20 100 0 100 5 0 100 100 5 100 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following statements are true after execution of the program.void main(){ int a[10], i, *p; a[0] = 1; a[1] = 2; p = a; (*p)++;} a[1] = 2 a[1] = 3 Compilation error a[0] = 3 a[0] = 2 a[1] = 2 a[1] = 3 Compilation error a[0] = 3 a[0] = 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming The type of the controlling expression of a switch statement cannot be of the type ........ float short char long int float short char long int ANSWER DOWNLOAD EXAMIANS APP