Skip to content

Instantly share code, notes, and snippets.

@Rustam-Z
Created August 9, 2021 04:59
Show Gist options
  • Save Rustam-Z/5d684d89049b8a9acd762e5ea27a2722 to your computer and use it in GitHub Desktop.
Save Rustam-Z/5d684d89049b8a9acd762e5ea27a2722 to your computer and use it in GitHub Desktop.
int call(int rnum){
// rnum is parameter
printf("the num is %d", rnum);
}
int num = 20;
call(num);
// num is argument
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment