Skip to content

Instantly share code, notes, and snippets.

@MayankPandey01
Created December 20, 2021 08:06
Show Gist options
  • Save MayankPandey01/91c01d797bfe6f6842a9063bdebfe841 to your computer and use it in GitHub Desktop.
Save MayankPandey01/91c01d797bfe6f6842a9063bdebfe841 to your computer and use it in GitHub Desktop.
void print_number(int* somePtr) {
if (somePtr != NULL)
printf ("%d\n",*somePtr);
// else do something
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment