Answers for "int variable in c++"

C++
3

how to create an integer in c++

int num = 0;
Posted by: Guest on February-04-2021
0

how to write int variable c++

//Declare integer variable in C++
int x;
//Initialize integer variable
x = 1;

//Declaring and Initialize in same line
int y = 0;
Posted by: Guest on March-20-2021

Browse Popular Code Answers by Language