C Programming C was primarily developed as General purpose language Data processing language None of these System programming language General purpose language Data processing language None of these System programming language ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? Bjarne Stroustrup Dr. Dennis Ritchie Gosling F. Codd James Bjarne Stroustrup Dr. Dennis Ritchie Gosling F. Codd James ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Local scope Block scope No scope at all Function scope File scope Local scope Block scope No scope at all Function scope File scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Find the output of the following program.#includevoid main(){ int y=10; if(y++>9 && y++!=11 && y++>11) printf("%d", y); else printf("%d", y);} 13 14 11 Compilation error 12 13 14 11 Compilation error 12 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; 10 6 5 9 11 10 6 5 9 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?int b=15, c=5, d=8, e=8, a;a = b>c ? c>d ? 12 : d>e ? 13 : 14 : 15;printf("%d", a); Garbage Value 14 15 12 13 Garbage Value 14 15 12 13 ANSWER DOWNLOAD EXAMIANS APP