0
Program
Int main() { Const int number=2; Number=3; Printf(“the number is %d”,number); }
1 ответ
+ 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); }