News

Sunday, January 23, 2022

02 || C++ First Program "Hello World" via Dev C++



1. Code:

1.1 Input:


#include using namespace std; int main() { cout<<"Hello World"; }

1.2. Output:

Hello World
--------------------------------
Process exited after 0.03562 seconds with return value 0
Press any key to continue . . .

2. Explanation:







No comments:

Post a Comment