Possible Duplicate:
How to stop C++ console application from exiting immediately?
I am trying to see my results, what do I do to my code so I can see if what I did is correct?
#include <iostream>
using namespace std;
int main()
{
    cout << "C++" << endl;
    cout << "The sum of 11 + 12 = " << 30/2 << endl;
    return 0;
}
 
     
     
    