C Programming Which is the only function all C programs must contain? main() getch() start() printf() system() main() getch() start() printf() system() ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=-1, j=-1, k=0, l=2, m; m = i++ && j++ && k++ || l++; printf("%d %d %d %d %d", i, j, k, l, m);} 0 0 1 3 0 0 0 1 2 0 0 0 1 3 1 0 0 0 2 1 0 0 1 3 0 0 0 1 2 0 0 0 1 3 1 0 0 0 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? && + ++ || % && + ++ || % 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 13 14 14 22 12 12 13 22 11 11 11 22 14 12 13 12 10 11 13 22 13 14 14 22 12 12 13 22 11 11 11 22 14 12 13 12 10 11 13 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of given program?#includevoid main(){ int i=1, j=-1; if((printf("%d", i)) < (printf("%d", j))) printf("%d", i); else printf("%d", j);} 1 complier error 1 -1 -1 1 -1 1 -1 1 complier error 1 -1 -1 1 -1 1 -1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is more appropriate for reading in a multi-word string? gets() scanf() None of these printf() puts() gets() scanf() None of these printf() puts() ANSWER DOWNLOAD EXAMIANS APP