Skip to content

Instantly share code, notes, and snippets.

@rasgo-cc
Last active November 14, 2015 00:29
Show Gist options
  • Save rasgo-cc/014b06bd51c1a6ffda95 to your computer and use it in GitHub Desktop.
Save rasgo-cc/014b06bd51c1a6ffda95 to your computer and use it in GitHub Desktop.
Assign a new value to j based on i
uint32_t i = 999999999;
uint32_t j = 1;
for( ; i > 0 ; i--) j = i;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment