C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 0713 Syntax error 713 0289 1289 0713 Syntax error 713 0289 1289 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 Any C program Must contain at least one function. Need not contain any function. None of these Needs input data. Must contain at least one function. Need not contain any function. None of these Needs input data. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output of the following program code.#includevoid main(){ int a, b=7; a = b<4 ? b<<1 : ++b>4 ? 7>>1 : a; printf("%d %d", a, b);} 3 7 7 3 3 8 8 3 None of these 3 7 7 3 3 8 8 3 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the return value of the following statement if it is placed in C program? strcmp("ABC", "ABC"); 1 Compilation Error -1 33 0 1 Compilation Error -1 33 0 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 9 0.5 1 2 0.25 9 0.5 1 2 ANSWER DOWNLOAD EXAMIANS APP