Created
April 22, 2024 04:02
-
-
Save edygert/eb4ed782de2c1c745c9e739380a986d2 to your computer and use it in GitHub Desktop.
sample code for godbolt
This file contains hidden or 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 __fastcall addemup(int a, int b, int c) { | |
int d; | |
d = a + b + c; | |
return d; | |
} | |
void caller() { | |
int x = addemup(1, 2, 3); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment