Created
February 16, 2015 08:32
-
-
Save huiyiqun/2fdac5410b511762175f 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
temp.c:5:13: warning: length modifier 'I64' results in undefined behavior or no effect with 'd' conversion specifier [-Wformat] | |
scanf("%I64d", &a); | |
~^~~~ | |
temp.c:5:20: warning: format specifies type '__int64 *' (aka 'long long *') but the argument has type 'int *' [-Wformat] | |
scanf("%I64d", &a); | |
~~~~~ ^~ | |
%d |
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
#include <stdio.h> | |
int main() { | |
int a; | |
scanf("%I64d", &a); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment