Created
December 20, 2021 08:01
-
-
Save MayankPandey01/53d22c3e2ae60d73d2c39d73eaf84b3d 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) { | |
assert (somePtr!=NULL); | |
printf ("%d\n",*somePtr); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment