Skip to content

Instantly share code, notes, and snippets.

@McPolemic
Created June 27, 2012 14:40
Show Gist options
  • Save McPolemic/3004483 to your computer and use it in GitHub Desktop.
Save McPolemic/3004483 to your computer and use it in GitHub Desktop.
Modify by reference example
#include <stdio.h>
void modify_short(short *value)
{
*value = 3;
}
int main(int argc, char *argv[]) {
short temp = 2;
modify_short(&temp);
printf("Value of short: %hd\n", temp);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment