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? 6 Runtime error Syntax error 8 No output 6 Runtime error Syntax error 8 No output ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the given program?#includevoid main(){ int value=0; if(value) printf("well done "); printf("examveda");} complier error well done examians None of these examians complier error well done examians None of these examians ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here} 1 Garbage Value 10 None of These 1 Garbage Value 10 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following comments about the ++ operator are correct? All of these The operand can come before or after the operator It is a unary operator It associates from the right It cannot be applied to an expression All of these The operand can come before or after the operator It is a unary operator It associates from the right It cannot be applied to an expression ANSWER DOWNLOAD EXAMIANS APP
C Programming Let x be an array. Which of the following operations are illegal?I. ++xII. x+1III. x++IV. x*2 I and II I, II and III III and IV I, III and IV II and III I and II I, II and III III and IV I, III and IV II and III ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); Infinite loop 10 11 12 13 14 None of these 10 11 12 13 14 15 9 10 11 12 13 Infinite loop 10 11 12 13 14 None of these 10 11 12 13 14 15 9 10 11 12 13 ANSWER DOWNLOAD EXAMIANS APP