Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Sep 15th, 2012  |  syntax: C++  |  size: 0.14 KB  |  hits: 9  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. }