QUIZ-4 OF C PROGRAMMING LANGUAGE
QUIZ-4 OF C PROGRAMMING LANGUAGE Q 1 – What is the output of the following program? #include<stdio.h> main() { int x = 3; x += 2; x =+ 2; printf(“%d”, x); } A – 2 B –...
QUIZ-4 OF C PROGRAMMING LANGUAGE Q 1 – What is the output of the following program? #include<stdio.h> main() { int x = 3; x += 2; x =+ 2; printf(“%d”, x); } A – 2 B –...
Q 1 – What is the output of the following program? #include<stdio.h> main() { char s[] = “Fine”; *s = ‘N’; printf(“%s”, s); } A – Fine B – Nine C – Compile error D – Runtime error...