how to write int variable c 2b 2b

Solutions on MaxInterview for how to write int variable c 2b 2b by the best coders in the world

showing results for - "how to write int variable c 2b 2b"
Laura
26 Oct 2016
1//Declare integer variable in C++
2int x;
3//Initialize integer variable
4x = 1;
5
6//Declaring and Initialize in same line
7int y = 0;