Skip to content

Instantly share code, notes, and snippets.

@shabbirbhimani
Created July 21, 2018 06:15
Show Gist options
  • Save shabbirbhimani/07b505063fdac95d737147de99e0eb89 to your computer and use it in GitHub Desktop.
Save shabbirbhimani/07b505063fdac95d737147de99e0eb89 to your computer and use it in GitHub Desktop.
#include<iostream> //CPP input output stream header file
using namespace std; //always end your line by a semicolon(;)
int main(){ //main() it’s here where compiler starts running program from
cout<<”hello world”; //cout is standard output for cpp
return 1;
}// Hurray after this small code you can call yourself a coder :p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment