Last active
April 25, 2020 17:39
-
-
Save domiyanyue/a4ef88306f837a823ed290fe3f86710d to your computer and use it in GitHub Desktop.
declaration example
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
// example declaration | |
// declaration of a class | |
class MyClass; | |
// delaration of a function | |
int my_function (int arg); | |
// declaration of varibales, also contains definition | |
int my_var; | |
int my_var2 = 5; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment