C Programming Consider the following code:void main(){ int a[5] = {6,8,3,9,0}, i=0; if(i != 0) { break; printf("%d", a[i]); } else printf("%d", a[i++]);}What is the output of the above program? 8 Runtime error Syntax error No output 6 8 Runtime error Syntax error No output 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming If the two strings are identical, then strcmp() function returns true 1 0 -1 None of these true 1 0 -1 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char *p; p="Hello"; printf("%c", *&*p);} None of These H Some Address will be printed Hello None of These H Some Address will be printed Hello ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} 7 5 6 None of These 7 5 6 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:main(){ int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 54554 45545 45445 54544 54554 45545 45445 ANSWER DOWNLOAD EXAMIANS APP
C Programming The address operator &, cannot act on Local variables Both of the above R-values Arithmetic expressions Members of a structure Local variables Both of the above R-values Arithmetic expressions Members of a structure ANSWER DOWNLOAD EXAMIANS APP