C Programming Determine Output:void main(){ char string[]="Hello World"; display(string);}void display(char *string){ printf("%s", string);} None of These Compiler Error will print Hello World Can't Say None of These Compiler Error will print Hello World Can't Say ANSWER DOWNLOAD EXAMIANS APP
C Programming What will happen after compiling and running following code?main(){ printf("%p", main); } Will make an infinite loop. Error Some address will be printed. None of these. Will make an infinite loop. Error Some address will be printed. None of these. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p="hi friends", *p1; p1=p; while(*p!='\0') ++*p++; printf("%s", p1);} hi friends ij!gsjfoet hj grjeodt None of These hi friends ij!gsjfoet hj grjeodt None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? puts() gets() printf() scanf() None of these puts() gets() printf() scanf() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 12 10 11 13 22 14 12 13 22 11 11 11 22 12 12 13 22 13 14 14 12 10 11 13 22 14 12 13 22 11 11 11 22 12 12 13 22 13 14 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define prod(a,b) a*bvoid main(){ int x=3, y=4; printf("%d", prod(x+2, y-1));} 11 12 15 10 11 12 15 10 ANSWER DOWNLOAD EXAMIANS APP