Created
April 27, 2019 11:47
-
-
Save catupper/df0d04d40b12dd57f6142db9bc30fe4d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main(){ | |
int a = 0, c = 2; | |
auto b = &a; | |
int c = 3; | |
a *=/ b; | |
a /*= c; | |
a =-+ c; | |
b =*/ 1; | |
b -=+ c; | |
c =/* a; | |
c /=* b; | |
c */= c; | |
return c; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment