What Will Be The Output Of The Programp Pre Langcpp #1302
What will be the output of the program?</p> <pre><code class="language-cpp"> extern int var; int main(void) { var = 10; var++; cout<<var; } </code></pre>
This multiple choice question (MCQ) is related to the book/course
gs gs111 OOP Object Oriented Programming Java.
It can also be found in
gs gs111 Memory Allocation & Scope of Variable - OOPs MCQ: Extern Variable - Quiz No.2.
What will be the output of the program?
extern int var; int main(void) { var = 10; var++; cout<<var; }
10
11
Run time error
Compile time error