Created
September 18, 2015 06:31
-
-
Save sonsongithub/add2c06124ddd0253bbd to your computer and use it in GitHub Desktop.
Arguments are ignored?
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 hoge(); | |
| int main(int argc, char**argv) { | |
| hoge(1); | |
| printf("test\n"); | |
| return 0; | |
| } | |
| int hoge(void) { | |
| printf("hoge\n"); | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Oh... I don't know about it...
Thank you!!