见题!
http://wiki.ubuntu.org.cn/index.php?title=%E7%BC%96%E7%A8%8B%E8%AF%AD%E8%A8%80&variant=zh-cn
vim+gcc/g++很好。。打开几个终端,一个写代码,一个调试,一个拿来写make文件,一个编译~很过瘾的
集成开发环境,CodeBlocks不错。。有Linux下的。。
vim+gcc/g++是效率很高的开发方式
写代码 ......
内容涉及:C、C++、STL、VC++、MFC、COM、ATL、Windows网络编程、数据库编程、Windows驱动编程、软件工程、Windows操作系统编程,等等方面。
下载地址:http://www.cctry.com/forumdisplay.php?fid=46
VC驿站 - http://www.cctry.com
C、C++、VC++ 编程 学习 免费教程 精品电子书 精品源码 期待您的加 ......
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define MAXCOUNT 2*100
char *transfromation(char *str)
{
int len = strlen(str);
char *buf = new char[len + 1];
char *p = str;
char *q ......
#include <iostream>
#include <string>
using namespace std;
class Student
{
public:
void get_value()
{cin>>num>>name>>sex;}
void display()
{
cout < <"num:" < <num < <endl;
cout < <"name:" ......
纯C/C++/java如何实现无限分类树?并且给出查找/添加/修改/删除某结点的方法。
不要长篇的代码,只要实现思路。谢谢!!
http://www.94qing.com/art/DTree.html
http://download.csdn.net/source/581317 C#的
http://download.csdn.net/source/1614433 javascript的
随便用一个改改就行了。
http://topic. ......
用vs2005写的一个MFC程序,一编译就提示报错弹出提示框“Microsoft(R) C/C++优化编译器已停止工作”,这是怎么回事啊,以前都没有遇到过啊。
重装。。
写个Hello world看看能不能编译,如果Hello world都出错,那么按楼上处理吧
中途LZ有没有重装过系统?如果原来是XP现在是Vista、Win2008的话,只要把你这个工程的De ......