Skip to content
Related Articles
Open in App
Not now

Related Articles

C++ | const keyword | Question 5

Improve Article
Save Article
  • Difficulty Level : Easy
  • Last Updated : 28 Jun, 2021
Improve Article
Save Article

Output of C++ program?




#include <iostream>
int const s=9;
int main()
{
    std::cout << s;
    return 0;
}


Contributed by Pravasi Meet
(A) 9
(B) Compiler Error


Answer: (A)

Explanation: The above program compiles & runs fine. Const keyword can be put after the variable type or before variable type. But most programmers prefer to put const keyword before the variable type.

Quiz of this Question

My Personal Notes arrow_drop_up
Related Articles

Start Your Coding Journey Now!