Skip to content

Instantly share code, notes, and snippets.

@akhilesh-kumar-verma
Last active March 5, 2022 07:12
Show Gist options
  • Save akhilesh-kumar-verma/db11fa905825ce7eb2b928e93a25325f to your computer and use it in GitHub Desktop.
Save akhilesh-kumar-verma/db11fa905825ce7eb2b928e93a25325f to your computer and use it in GitHub Desktop.
/* hello_world.cpp
* This is Hello World of C++
* Date Created: 23 Feb, 2022
* Author: Akhilesh Kumar Verma
*/
#include <iostream>
using namespace std;
int main(int argc, char **argv) {
cout << "Hello World" << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment