C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 0 0 1 1 1 0 0 None of these 1 0 0 1 1 1 0 0 None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Given b=110 and c=20, what is the value of 'a' after execution of the expression a=b-=c*=5? 450 110 -10 -110 10 450 110 -10 -110 10 ANSWER DOWNLOAD EXAMIANS APP
C Programming Array passed as an argument to a function is interpreted as Values of the first elements of the array. Address of the array. Address of the first element of the array. Number of element of the array. Values of the first elements of the array. Address of the array. Address of the first element of the array. Number of element of the array. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following is not a correct variable type? double char real float int double char real float int ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i=i++, j=j++, k=k++; printf("%d %d %d", i, j, k);} garbage values Error 0 0 0 1 1 1 garbage values Error 0 0 0 1 1 1 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 14 12 13 22 12 12 13 22 11 11 11 12 10 11 13 22 13 14 14 22 14 12 13 22 12 12 13 22 11 11 11 12 10 11 13 22 13 14 14 ANSWER DOWNLOAD EXAMIANS APP