[ create a new paste ] login | about

Link: http://codepad.org/JPBlTTxm    [ raw code | output | fork ]

lenniedg2000 - C++, pasted on Feb 4:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
using namespace std;

int age = 5;

int main()
{
  cout << age;
  if (age == 5)
  {
    int na = 2;
  }
  cout << na;
}


Output:
1
2
3
In function 'int main()':
Line 13: error: 'na' was not declared in this scope
compilation terminated due to -Wfatal-errors.


Create a new paste based on this one


Comments: