// Lecture : Introduction to C++ - Types and Variables OCSALY IDE : CLion #include int main() { int _myVariable = 2; int myvariable = 2; int mYVariable = 2; int myVariable = 2; int __AyVariable =2; int i; //0 i++;// increment by 1 0 + 1 = 1 int a = 1; int b = int(2); int c(3); printf("A = %d\nB = %d\n C = %d\n", a, b, c); return 0; }