Last active
March 14, 2018 09:56
-
-
Save vixtory09678/74eca73474513a4ee110df9d3865c5e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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