[ create a new paste ] login | about

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

C++, pasted on Dec 11:
1
2
3
4
5
6
7
8
9
10
11
12
int main()
{
    for(int i=0; i<=10; i++)    
    {
    }

    String i = 100;
    cout << i;

    return 0:

}


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


Create a new paste based on this one


Comments: