| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 353 人关注过本帖
标题:关于VC6.0
只看楼主 加入收藏
flqhdwn
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2009-7-24
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:1 
关于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;
}
搜索更多相关主题的帖子: 1122 
2009-07-26 18:28
lin52045
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:41
专家分:113
注 册:2009-7-24
收藏
得分:14 
虽然我是用VC6.0的,但是看你这个一点不懂...

C语言入门新手,大家一起讨论学习!
2009-07-27 17:16
快速回复:关于VC6.0
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.024692 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved