InterviewSolution
Saved Bookmarks
| 1. |
What is the block scope variable in C++? |
|
Answer» A variable whose scope is applicable only within a block is said so. Also a variable in C++ can be declared anywhere within the block. |
|