C Programming Find the output of the following program. void main() { int i=01289; printf("%d", i); } 713 1289 Syntax error 0713 0289 713 1289 Syntax error 0713 0289 ANSWER DOWNLOAD EXAMIANS APP
C Programming The recursive functions are executed in a ........... Random order Parallel order Last In First Out order First In First Out order Iterative order Random order Parallel order Last In First Out order First In First Out order Iterative order ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following statements are correct about an array?1. The array int num[26]; can store 26 elements.2. The expression num[1] designates the very first element in the array.3. It is necessary to initialize the array at the time of declaration.4. The declaration num[SIZE] is allowed if SIZE is a macro. 2, 4 1 2, 3 1, 4 None of these 2, 4 1 2, 3 1, 4 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming The output of the following program is:#define f(g,g2) g##g2void main(){ int var12=100; printf("%d", f(var,12));} 100 g##g2 Runtime error Syntax error 10012 100 g##g2 Runtime error Syntax error 10012 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char s[]="man"; int i; for(i=0; s[i]; i++) printf("%c%c%c%c ", s[i], *(s+i), *(i+s), i[s]);} None of These Compiler Error mmm nnn aaa mmmm nnnn aaaa None of These Compiler Error mmm nnn aaa mmmm nnnn aaaa ANSWER DOWNLOAD EXAMIANS APP
C Programming Consider the following program fragment:for(c=1, sum=0; c <= 10; c++){ scanf("%d", &x); if( x < 0 ) continue; sum += x;}What would be the value of sum for the input 1, -1, 2, -2, 3, -3, 4, -4, 5, -5 10 15 -5 1 30 10 15 -5 1 30 ANSWER DOWNLOAD EXAMIANS APP