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 30 -5 1 15 10 30 -5 1 15 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i);} 54554 45545 54544 55445 54554 45545 54544 55445 ANSWER DOWNLOAD EXAMIANS APP
C Programming C preprocessor All of these Takes care of conditional compilation Takes care of include files Takes care of macros Acts before compilation All of these Takes care of conditional compilation Takes care of include files Takes care of macros Acts before compilation ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ int i=065, j=65; printf("%d %d", i, j);} 65 65 53 65 065 65 053 65 Syntax error 65 65 53 65 065 65 053 65 Syntax error ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following code?#includevoid main(){ int s=0; while(s++<10) { if(s<4 && s<9) continue; printf("%dt", s); }} 1 2 3 10 1 2 3 4 5 6 7 8 9 None of these 4 5 6 7 8 9 10 4 5 6 7 8 9 1 2 3 10 1 2 3 4 5 6 7 8 9 None of these 4 5 6 7 8 9 10 4 5 6 7 8 9 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 50 Theoratically no limit. The only practical limits are memory size and compilers. 8 20 2 50 Theoratically no limit. The only practical limits are memory size and compilers. 8 20 2 ANSWER DOWNLOAD EXAMIANS APP