C Programming Determine Output:void main(){ int i = abc(10); printf("%d", --i);}int abc(int i){ return(i++);} 9 10 11 None of These 9 10 11 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... The actual values read for each argument. ASCII value of the input read. 0 1 The number of successful read input values. The actual values read for each argument. ASCII value of the input read. 0 1 The number of successful read input values. ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? Garbage Value 3 1 2 0 Garbage Value 3 1 2 0 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 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 15 10 -5 30 1 15 10 -5 30 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.void main(){ char *msg = "hi"; printf(msg);} Error h hi hi followed by garbage value Garbage Value Error h hi hi followed by garbage value Garbage Value ANSWER DOWNLOAD EXAMIANS APP