Skip to content

Instantly share code, notes, and snippets.

@tovask
Last active February 20, 2017 14:02
Show Gist options
  • Save tovask/51b59a050d01c64cc217625fd7f8ec85 to your computer and use it in GitHub Desktop.
Save tovask/51b59a050d01c64cc217625fd7f8ec85 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main(){
int i,a=0;
for( i=0; i<3; i++){
if(i%3)
if(i%2)
printf("%d\n", (a = a+=2) );
else
printf("%d\n", (a = a++) );
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment