-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.cpp
More file actions
25 lines (21 loc) · 578 Bytes
/
Copy pathhello.cpp
File metadata and controls
25 lines (21 loc) · 578 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// ================================================
// * Language: C++ / Cpp
// * Topic: Basic / Intro
// ===============================================
// #include <iostream>
// using namespace std;
// int main(){
// cout<<"Hello Wrold\n";
// cout << "Hello Wrold 2.0 \n";
// return 0;
// }
// ===================== line Break 2nd Option==========================
#include <iostream>
using namespace std;
int main(){
cout <<"Hello ! this is 2nd Option";
cout<< endl;
cout<<"Now see output";
cout<< endl;
return 0;
}