初学者,有遇到困难了,求帮助
程序代码:#include<stdio.h>
#include<inttypes.h>//可移植类型
int main(void)
{
int16_t me16; //me16 是一个16为有符号变量
me16=4593;
printf("FERST,assume int16_t is short");
printf("me16=%hd\n",me16);
printf("Next,lest's not make any assumptions.\n");
printf("Instead,use a \"macro\"from inttypes.h:");
printf("me16=%" prid16"\n",me16);
return 0;
}
老是报错误: fatal error C1083: Cannot open include file: 'inttypes.h': No such file or directory提示 没有这样的文件或目录
怎么解决编译器用的是Microsoft Visual C++ 6.0 sp6 求帮助









