Answers for "constant qualifier c++ "error display""

C++
0

constant qualifier c++ "error display"

#include<iostream>
using namespace std;
int main() {
   const int x = 10;
   x = 12;
   return 0;
}
Posted by: Guest on December-10-2021

Browse Popular Code Answers by Language