C Programming Determine output:void main(){ int i=10; i = !i>14; printf("i=%d", i); } None of these 1 10 0 14 None of these 1 10 0 14 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... stdin Data file stderr string no such function in 'C'. stdin Data file stderr string no such function in 'C'. ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the correct output of the following program?#includevoid main(){ char str[] = "C EXAMINATION", rev[17]; int i = strlen(str), j=0; for( ; i>=0; rev[j++] = str[i--]) rev[j] = str[j] ; puts(rev);} NOITANIMAXE Syntax error No output at all. C NOITANIMAXE C NOITANIMAXE Syntax error No output at all. C NOITANIMAXE C ANSWER DOWNLOAD EXAMIANS APP
C Programming int a[5] = {1,2,3}What is the value of a[4]? 3 1 Garbage Value 0 2 3 1 Garbage Value 0 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... File scope Block scope Local scope Function scope No scope at all File scope Block scope Local scope Function scope No scope at all ANSWER DOWNLOAD EXAMIANS APP
C Programming String concatenation means - Comparing the two strings to define the larger one. Combining two strings. Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. Comparing the two strings to define the larger one. Combining two strings. Merging two strings. Extracting a substring out of a string. Partitioning the string into two strings. ANSWER DOWNLOAD EXAMIANS APP