Skip to content

Instantly share code, notes, and snippets.

@vixtory09678
Last active March 14, 2018 09:56
Show Gist options
  • Save vixtory09678/74eca73474513a4ee110df9d3865c5e4 to your computer and use it in GitHub Desktop.
Save vixtory09678/74eca73474513a4ee110df9d3865c5e4 to your computer and use it in GitHub Desktop.
#include <stdio.h> //Prepocessor Directives
void testHello(); // Global Decarations
int id_student = 10; // Global Decarations
int main(){
char* name = "RoboticsZa"; // Local Declarations
cout << "Hello World " << name <<endl; // Statements
return 0;
}
// Other functions as required
void testHello(){
cout << "Hello Test" << endl;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment