Hi,
I met few lines code like:
.......
const int itemPersreen = 7;
const int fontSize = 8;
and I need:
const int x = 8;
what can I do?
Thanks
Adam
Hi,
I met few lines code like:
.......
const int itemPersreen = 7;
const int fontSize = 8;
and I need:
const int x = 8;
what can I do?
Thanks
Adam
What is wrong with using
const int x = 8;
Is there any reason for x to be an int as its value is only 8 ?
What does 'x' mean?
This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.