C Programming What will be the output of the following piece of code?for(i = 0; i<10; i++);printf("%d", i); 0 Syntax error 10 0123456789 Infinite loop 0 Syntax error 10 0123456789 Infinite loop ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... string no such function in 'C'. stdin Data file stderr string no such function in 'C'. stdin Data file stderr ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? printf() gets() scanf() puts() None of these printf() gets() scanf() puts() None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming void main(){ int a=10, b; b = a++ + ++a; printf("%d %d %d %d", b, a++, a, ++a);}what will be the output when following code is executed? 22 11 11 11 22 12 12 13 22 14 12 13 22 13 14 14 12 10 11 13 22 11 11 11 22 12 12 13 22 14 12 13 22 13 14 14 12 10 11 13 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);} 53 65 065 65 053 65 Syntax error 65 65 53 65 065 65 053 65 Syntax error 65 65 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char a[]="12345"; int i = strlen(a); printf("%d", ++i);} 7 None of These 5 6 7 None of These 5 6 ANSWER DOWNLOAD EXAMIANS APP