关于VC6.0
刚学C语言 一直在用 Turbo c !简单点的 编辑 编译 链接 执行 还凑合着能用 到了比较长一点的代码 然后就提示 一大堆英文 本人英语水平不是那么好 初中水平 现在下了VC6.0中文版 ! 不知道怎么用 看了使用教程视频感觉也像是在听天书(大家别说我笨)
现在我就想知道 C语言书籍当中 简单的列子!怎么用VC6.0编辑 编译 链接 执行!
我只想用VC6.0完成书中的列子 !看了2天的 视频教程 还是不会用 没办法到这里求助
不做其他的 就只做书中的列子 用VC6.0 详细一点的要怎么做?
我看的书是 C语言入门经典 4版的 杨浩 译
书中又没提示让你去用什么软件...
清华的 C程序设计 是让你用Turbo c 但是那本书实在是看不懂 一大堆数字算法;;
下面有一个列子 执行这些代码 VC6.0应该要怎么做?
#include<stdio.h>
#include<limits.h>
#include<float.h>
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 storevalues 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);
printf("\n\nThe size of the smallest non-zero value of typefloat is%.3e,"FLT_MIN);
printf("\nThe size of the largest value of type float is %.3e",FLT_MAX);
printf("\nThe size of the smallest non-zero value of type double is %.3e",DBL_MIN);
printf("\nThe size of the smallest non-zero value ~CCC of type long double is %.3Le",LDBL_MIN);
printf("\nThe size of the largest value of type long double is %.3Le\n",LDBL_MAX);
printf("\nVariables of type double provide %u decimal digits precision.",FLT_DIG);
printf("\nVariables of type double provide %u decimal digits precision.",DBL_DIG);
printf("\nVariables of type long double provide %u decimal digits precision.",LDBL_DIG);
return 0;
}