摘要: int *a;int b = 4;a= &b;//a:b的地址//*a 取b地址的值,为4//&a为指针变量的地址//*(&a)为指针变量储存的地址 即为aint **b = &a;//b为指针变量a的地址//*b为指针变量a所储存的地址//改变*b(指针变量所储存的地址)即改变了*b的值 阅读全文
posted @ 2016-01-02 23:17 喵小喵~ 阅读(192) 评论(0) 推荐(0) 编辑
摘要: #include //WINBASEAPI//BOOL//WINAPI//CreateProcessW(//_In_opt_ LPCWSTR lpApplicationName,//执行程序名称//_Inout_opt_ LPWSTR lpCommandLine,//命令行//_In_opt_ LP... 阅读全文
posted @ 2016-01-02 22:47 喵小喵~ 阅读(208) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include "detours.h"#pragma comment(lib,"detours.lib")//包含库文件int (*poldsystem)(const char * _Command) = system;int newsyste... 阅读全文
posted @ 2016-01-02 16:36 喵小喵~ 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int a[10][10] = { 0 }; 8 9 void show(int a[][10]) 10 { 11 c... 阅读全文
posted @ 2016-01-02 13:24 喵小喵~ 阅读(137) 评论(0) 推荐(0) 编辑
摘要: #define _CRT_SECURE_NO_WARNINGS#include #include #include #include char strpath[256] = "E:\\杂乱test\\kaifang.txt";char savepath[256] = { 0 };void showl... 阅读全文
posted @ 2016-01-02 11:46 喵小喵~ 阅读(213) 评论(0) 推荐(0) 编辑