摘要: VC++6.0系列插件分类:C++/MFC2012-10-27 13:58995人阅读评论(0)收藏举报Visual C++ 插件系列介绍说到Visual C++的插件,大家可能只有想到Visual Assist吧。天真!行内开发的插件可只有这个!?下面介绍一下vc6.0的其他插件。1.Visual Assist(强烈推荐)网址:http://www.wholetomato.com/功能:VA从5.0一直到现在的VAX,功能越来越强大,除了以前版本中的自动识别各种关键字,系统函数,成员变量,自动给出输入提示,自动更正大小写错误,自动标示错误等等以外,最新的版本中还在WorkSpace窗口中加入 阅读全文
posted @ 2013-05-05 20:27 ubuntu-hao 阅读(311) 评论(0) 推荐(0)
摘要: putsputs()函数用来向标准输出设备(屏幕)写字符串并换行,其调用方式为,puts(s);其中s为字符串字符(字符串数组名或字符串指针)。 功 能: 送一字符串到流stdout中用 法: int puts(char *string);程序例:#include <stdio.h>int main(void){char string[] = "This is an example output string\n";puts(string);return 0;}初学者要注意以下例子#include <stdio.h>#include <coni 阅读全文
posted @ 2013-05-01 20:26 ubuntu-hao 阅读(155) 评论(0) 推荐(0)