C Miscellaneous MCQ
Test your knowledge with important C Miscellaneous MCQ and their applications. These MCQs are beneficial for competitive exams too. Explore 30 + more C Miscellaneous MCQs at Bissoy
-
What is the difference between the following 2 C codes?<br><pre><code class="c-program">#include <stdio.h> //Program 1int main(){ int d, a = 1, b = 2; d = a++ + ++b; printf("%d %d %d", d, a, b);}</code></pre><br><pre><code class="c-program">#include <stdio.h> //Program 2int main(){ int d, a = 1, b = 2; d = a++ +++b; printf("%d %d %d", d, a, b);}</code></pre>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-