C Programming What is the output of the following statements?int i = 0;printf("%d %d", i, i++); 1 1 0 0 None of these 1 0 0 1 1 1 0 0 None of these 1 0 0 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ int i; printf("%d", scanf("%d", &i)); // value 10 is given as input here} Garbage Value 1 10 None of These Garbage Value 1 10 None of These ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of An operating system None of these. An Editor A compiler An operating system None of these. An Editor A compiler 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? -10 110 -110 10 450 -10 110 -110 10 450 ANSWER DOWNLOAD EXAMIANS APP
C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During linking During Execution During Preprocessing None of these During Editing During linking During Execution During Preprocessing None of these During Editing ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? 2 -1 1 Program do no return a value. 2 -1 1 Program do no return a value. ANSWER DOWNLOAD EXAMIANS APP