我一直在做很多研究ULONG_MAX
并试图找出如何声明它,但它似乎不起作用。我使用标题#include <stdio.h>
并#include <limits.h
进行ULONG_MAX
工作。在线没有什么太多ULONG_MAX
,所以这让我很难使用它。我觉得我用ULONG_MAX
错了。
问题:如何申报ULONG_MAX
示例代码:
#include <stdio.h>
#include <limits.h>
main(){
ULONG_MAX number;
return 0;
}
错误:
gcc version 4.6.3
main.c:4:1: warning: return type defaults to 'int' [-Wimplicit-int]
main(){
^~~~
main.c: In function 'main':
main.c:5:13: error: expected ';' before 'number'
ULONG_MAX number;
^~~~~~
main.c:6:3: error: 'num' undeclared (first use in this function)
num = ULONG_MAX;
^~~
main.c:6:3: note: each undeclared identifier is reported only once for each function it appears in
exit status 1
我正在使用的编译器:Repl.it