摘要:
// PETools.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include <windows.h>#include <malloc.h> DWORD len=0; //记录文件 阅读全文
摘要:
// 仿PE文件.cpp : Defines the entry point for the console application.// #include "stdafx.h"#include <windows.h>#include <malloc.h> /*将文件从硬盘读取到缓冲区中参数1 :文 阅读全文
摘要:
// 动态链接库测试2.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include <windows.h>//隐式连接:这种连接方式是由编译器自己加载DLL文件的/*#pragma c 阅读全文
摘要:
// 单继承虚函数无overload.cpp : Defines the entry point for the console application.// #include "stdafx.h" class Parent{public: virtual void fun1(){ } virtua 阅读全文
摘要:
// 继承.cpp : Defines the entry point for the console application.// #include "stdafx.h" struct person{ int age; int sex;};struct student:person{ int gr 阅读全文