C Programming In which stage the following code#includegets replaced by the contents of the file stdio.h During Preprocessing During Editing During linking During Execution None of these During Preprocessing During Editing During linking During Execution None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Dennis Ritchie James Bjarne Stroustrup F. Codd Dr. Gosling Dennis Ritchie James Bjarne Stroustrup F. Codd Dr. Gosling 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 Determine Output:#include#define a 10void main(){ #define a 50 printf("%d", a);} None of These 10 Compiler Error 50 None of These 10 Compiler Error 50 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 -10 110 -110 450 10 -10 110 -110 450 ANSWER DOWNLOAD EXAMIANS APP
C Programming What number will z in the sample code given below?int z, x=5, y= -10, a=4, b=2;z = x++ - --y*b/a; 6 11 5 10 9 6 11 5 10 9 ANSWER DOWNLOAD EXAMIANS APP