0
Program
Int main() { Const int number=2; Number=3; Printf(âthe number is %dâ,number); }
1 Answer
+ 2
run in code playground and see output.
if you asking why, you can't assign value twice to const.
so error
Int main() { Const int number=2; Number=3; Printf(âthe number is %dâ,number); }