Created
January 17, 2017 17:25
-
-
Save yhaskell/99b60969be7250121255f8336d55db6d to your computer and use it in GitHub Desktop.
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
#include <stdio.h> | |
int foo(struct { int hui; } *klimov) { | |
return klimov->hui * 42; | |
} | |
int main() { | |
struct { int hui; } klmv; | |
klmv.hui = 42; | |
printf("%d\n", foo(&klmv)); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment