Skip to content

Instantly share code, notes, and snippets.

@morganwilde
Last active August 29, 2015 13:56
Show Gist options
  • Save morganwilde/9334003 to your computer and use it in GitHub Desktop.
Save morganwilde/9334003 to your computer and use it in GitHub Desktop.
int *first, // Allocates a pointer to int
a; // Allocates an int
for ( a = 0; // Initializes a to 0
a < 10;
a++ // Increments a value by 1
) {
first[a] = 5;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment