From 39b7ae4d188c0cc366db17558d3fdd42941df25f Mon Sep 17 00:00:00 2001 From: Kirill Date: Sat, 13 Sep 2014 15:04:49 +0600 Subject: Added missing ";" --- c++.html.markdown | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/c++.html.markdown b/c++.html.markdown index 8cf72e47..7609dd46 100644 --- a/c++.html.markdown +++ b/c++.html.markdown @@ -183,15 +183,15 @@ int main() int myInt; //Prints to stdout (or terminal/screen) - cout << "Enter your fav number:\n" + cout << "Enter your fav number:\n"; //Takes in input cin >> myInt; //cout can also be formatted - cout << "Your fav number is " << myInt << "\n" + cout << "Your fav number is " << myInt << "\n"; //Your fav number is ## - cerr << "Used for error messages" + cerr << "Used for error messages"; } -- cgit v1.2.3