Skip to content

Instantly share code, notes, and snippets.

@FraGoTe
Last active April 28, 2018 01:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save FraGoTe/10c59a62cda82096e54eb6ef63f4363d to your computer and use it in GitHub Desktop.
Save FraGoTe/10c59a62cda82096e54eb6ef63f4363d to your computer and use it in GitHub Desktop.
struct Building
{
String address;
int floors;
int currentFloor;
}
void goUpStairs(Building *const MyInstance)
{
MyInstance->currentFloor += 1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment