Advertisement
Felanpro

"The right way to declare variables in c++"

Jan 18th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.10 KB | None | 0 0
  1. "The right way to declare variables in c++": example: int x(0);
  2.  
  3. int x(0); Is the same as: int x = 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement