Created
December 20, 2021 08:06
-
-
Save MayankPandey01/91c01d797bfe6f6842a9063bdebfe841 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
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