C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} Hello Some Address will be printed H None of These Hello Some Address will be printed H None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program code?#includevoid main(){ int i = 10; void *p = &i; printf("%f", *(float *)p);} Error 10 None of these. 0.000000 Error 10 None of these. 0.000000 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the result of compiling and running this code?main(){ char string[] = "Hello World"; display(string);}void display(char *string){ printf("%s", string);} will print garbage value Compilation Error None of these. will print Hello World will print garbage value Compilation Error None of these. will print Hello World ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 713 0289 Syntax error 0713 1289 713 0289 Syntax error 0713 1289 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 Compilation Error -1 1 0 33 Compilation Error -1 1 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); 9 10 11 12 13 10 11 12 13 14 15 Infinite loop None of these 10 11 12 13 14 9 10 11 12 13 10 11 12 13 14 15 Infinite loop None of these 10 11 12 13 14 ANSWER DOWNLOAD EXAMIANS APP