Guest User

Untitled

a guest
Jun 23rd, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. const char * lol = "Hello World!";
  4.  
  5. int FunctionIterateI(int i)
  6. {
  7. i+=3;
  8. return i;
  9. }
  10.  
  11. int main()
  12. {
  13. int i = 1;
  14. i = FunctionIterateI(i);
  15. std::cout << i;
  16. return 0;
  17. }
Add Comment
Please, Sign In to add comment