Update c++.cpp

Used namespace.
This commit is contained in:
MridulRaturi
2020-04-27 22:49:03 +05:30
committed by GitHub
parent baabb0c402
commit 8565caab82

View File

@@ -1,6 +1,8 @@
#include <iostream>
using namespace std;
int main()
{
std::cout << "Hello World\n";
cout << "Hello World\n";
}