随笔分类 - c++
c++ 学习笔记
摘要:一。消息头文件内容如下: // stdafx.h : 标准系统包含文件的包含文件,// 或是经常使用但不常更改的// 特定于项目的包含文件//#pragma once#include "targetver.h"#include <stdio.h>#include <tchar.h>#ifndef _
阅读全文
摘要:#include "stdafx.h"#include <iostream>#include<fstream>using namespace std;void copy(char* src, char* dst);int _tmain(int argc, _TCHAR* argv[]){ // 源文
阅读全文
摘要:#include "stdafx.h" #include <string> #include<windows.h> #include<iostream> #include <stdio.h> #include<cstring> using namespace std; int _tmain(int
阅读全文
摘要:由于好奇心驱使温习下c高级简化语言语言(个人解释可能不太准确)。下面用visual studio 2010 实现 HelloWord 打印 第一步:visual studio 2010 打开.文件 新建 项目,弹出了新建项目设置向导窗体: 直接确定。 第二步:在HelloWord.cpp中添加 #i
阅读全文