Guest User

Untitled

a guest
Sep 15th, 2012
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.14 KB | None | 0 0
  1. int a=0;
  2. initialize() // Call this function first
  3. {
  4.    a = 10;
  5. }
  6. load() // run this second
  7. {
  8.  a *= 2;
  9. }
  10. Run()
  11. {
  12.    load();
  13.    Run();
  14. }
Advertisement
Add Comment
Please, Sign In to add comment