Skip to content

Instantly share code, notes, and snippets.

View justani's full-sized avatar
🏠
Working from home

Aniruddh Dubey justani

🏠
Working from home
  • India
View GitHub Profile
#include <iostream>
// <iostream> header included.
using namespace std;
int main() //The main function
{
cout << "Hello world!" << endl;
/* I have printed Hello world.
This is fun */
return 0;
}