关于long long 定义的用法
为什么long可以直接在VC6.0里用,而 long long不能?求解答,谢谢啦

程序代码:#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
int main(void)
{
int64_t a;
scanf( "%"SCNd64, &a );
printf( "%"PRId64, a );
return 0;
}