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? Runtime error 6 Syntax error 8 No output Runtime error 6 Syntax error 8 No output ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the value of sum after the following program is executed?void main(){ int sum=1, index = 9; do{ index = index – 1; sum *= 2; }while( index > 9 );} 0.25 0.5 1 9 2 0.25 0.5 1 9 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54544 55445 45545 54554 54544 55445 45545 54554 ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? 110 -110 -10 450 10 110 -110 -10 450 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? / None of these % + * / None of these % + * ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Partitioning the string into two strings. Extracting a substring out of a string. Combining two strings. Comparing the two strings to define the larger one. Merging two strings. Partitioning the string into two strings. Extracting a substring out of a string. Combining two strings. Comparing the two strings to define the larger one. Merging two strings. ANSWER DOWNLOAD EXAMIANS APP