C Programming The function scanf() returns ......... The number of successful read input values. The actual values read for each argument. 1 0 ASCII value of the input read. The number of successful read input values. The actual values read for each argument. 1 0 ASCII value of the input read. ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... No scope at all Local scope Block scope File scope Function scope No scope at all Local scope Block scope File scope Function scope ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output?void main(){ int a=10, b=20; char x=1, y=0; if(a,b,x,y){ printf("EXAM"); } } Nothing is printed exam is printed Compiler Error XAM is printed Nothing is printed exam is printed Compiler Error XAM is printed 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 54544 45545 55445 54554 54544 45545 55445 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... no such function in 'C'. stdin Data file stderr string no such function in 'C'. stdin Data file stderr string ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i = -1; +i; printf("i = %d, +i = %d", i, +i);} i = 1, +i = 1 i = -1, +i = -1 i = -1, +i = 1 None of These i = 1, +i = 1 i = -1, +i = -1 i = -1, +i = 1 None of These ANSWER DOWNLOAD EXAMIANS APP