新手菜鸟问题 关于< limits.h > 这个头文件
本菜鸟刚开始自学C语言 学的是那本清华大学出版社的红色的《C语言入门经典》 其中有一个程序如下:/* Program 2.11 Finding the limits */
#include <stdio.h> /* For command line input and output */
#include < limits.h > /* For limits on integer types */
#include <float.h> /* For limits on floating-point types */
int main(void)
{
printf("Variables of type char store values from %d to %d",
CHAR_MIN, CHAR_MAX);
printf("\nVariables of type unsigned char store values from 0 to %u",
UCHAR_MAX);
printf("\nVariables of type short store values from %d to %d",
SHRT_MIN, SHRT_MAX);
printf("\nVariables of type unsigned short store values from 0 to %u",
USHRT_MAX);
printf("\nVariables of type int store values from %d to %d", INT_MIN, INT_MAX);
printf("\nVariables of type unsigned int store values from 0 to %u", UINT_MAX);
printf("\nVariables of type long store values from %ld to %ld",
LONG_MIN, LONG_MAX);
printf("\nVariables of type unsigned long store values from 0 to %lu",
ULONG_MAX);
printf("\nVariables of type long long store values from %lld to %lld",
LLONG_MIN, LLONG_MAX);
printf("\nVariables of type unsigned long long store values from 0 to %llu",
ULLONG_MAX);
就是那个头文件 < limits.h > ,我在Win Tc 和C-Free 这两个编译器下 都显示:No such file or directory. 不晓得该怎么办 请前辈指点
如果这个问题很二 别笑我 呵呵 谢谢
还有麻烦推荐一个好的编译器 再次感谢