diff --git a/new.cpp b/new.cpp new file mode 100644 index 0000000..6bdeaa5 --- /dev/null +++ b/new.cpp @@ -0,0 +1,7 @@ +//how to print hello world in C++ +#include +using namespace std; +int main() +{ + cout<<"hello world!\n"; +}