+ 2
How to name a variable with the name int?
Does any body know how to name a variable int or float? This doesn't work int int = 5; I don't need this info. Just curius to know š
6 Answers
+ 7
These are reserved keywords in C++ which cannot be used for naming purposes. :>
+ 2
A Ok
+ 2
since most of the languages are case sensitive then u can use something like..
int Int=5;
cout<<Int;
+ 1
maby int_ would work or iNt