C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 713 0289 0713 Syntax error 1289 713 0289 0713 Syntax error 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 What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 17 19 16 -1 20 17 19 16 -1 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Parallel order Iterative order Random order Last In First Out order First In First Out order Parallel order Iterative order Random order Last In First Out order First In First Out order ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int a[] = {10,20,30,40,50}, j, *p; for(j=0; j<5; j++){ printf("%d" ,*a); a++; } p = a; for(j=0; j<5; j++){ printf("%d" ,*p); p++; }} Error None of These 10 20 30 40 50 10 20 30 40 50 10 20 30 40 50 Garbage Value Error None of These 10 20 30 40 50 10 20 30 40 50 10 20 30 40 50 Garbage Value ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? + % || ++ && + % || ++ && ANSWER DOWNLOAD EXAMIANS APP