C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} Can't Say will print Hello World Compiler Error None of These Can't Say will print Hello World Compiler Error None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope Local scope File scope Block scope No scope at all Function scope Local scope File scope Block scope No scope at all 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 None of these. 10 0.000000 Error None of these. 10 0.000000 ANSWER DOWNLOAD EXAMIANS APP
C Programming The library function used to find the last occurrence of a character in a string is strrchr() laststr() strstr() strnstr() None of these strrchr() laststr() strstr() strnstr() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?void main(){ int a[10]; printf("%d %d", a[-1], a[12]);} 0 Garbage Value Code will not compile Garbage value 0 Garbage vlaue Garbage Value 0 0 0 Garbage Value Code will not compile Garbage value 0 Garbage vlaue Garbage Value 0 0 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 11 None of These 10 9 11 None of These 10 9 ANSWER DOWNLOAD EXAMIANS APP