Skip to content

Instantly share code, notes, and snippets.

@JIElite
Created November 8, 2014 12:11
Show Gist options
  • Save JIElite/03031b6a2a8b6d5e5be2 to your computer and use it in GitHub Desktop.
Save JIElite/03031b6a2a8b6d5e5be2 to your computer and use it in GitHub Desktop.
void func(int *num){
.....
}
int main(){
int number = 10;
func(&number);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment