Guest User

How to declare a variable.

a guest
Feb 2nd, 2016
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. Using variable in program :-
  2.  
  3. #include <iostream>
  4. using namespace std;
  5. int main ( )
  6. {
  7. int all_1;
  8. all_1 = 22;
  9. cout << all_1;
  10. return 0;
  11. }
  12.  
  13. Click for more: http://houseofprogramminglanguages.blogspot.com/
Add Comment
Please, Sign In to add comment