Local Variables


SUBMITTED BY: RavishBhatt

DATE: June 27, 2016, 8:11 a.m.

UPDATED: June 27, 2016, 8:27 a.m.

FORMAT: Text only

SIZE: 199 Bytes

HITS: 675

  1. #include <iostream>
  2. using namespace std;
  3. int main ()
  4. {
  5. // Local variable declaration:
  6. int a, b;
  7. int c;
  8. // actual initialization
  9. a = 10;
  10. b = 20;
  11. c = a + b;
  12. cout << c;
  13. return 0;
  14. }

comments powered by Disqus