c、c++
Drohui
这个作者很懒,什么都没留下…
展开
-
Dialog使用
DialogBox(hInstance,MAKEINTRESOURCE(IDD_DIALOG1),NULL,DialogProc);原创 2022-12-04 12:43:32 · 450 阅读 · 1 评论 -
单链表的增、删、改、查、排序--小结
头文件:#include <stdlib>结构体:typedef struct List{int data;struct List* next;}Node;内存申请:head=(Node*)malloc(sizeof(Node));完整代码(头插法):#include <stdio.h>#include <stdlib.h>typedef struct List{int data;struct List* next;原创 2021-09-17 08:44:32 · 101 阅读 · 0 评论 -
结构体--小结
//结构体名和结构体变量名可以一样,一般分开写 struct a { int x; int y; }; struct a m;//声明 m.x=3; printf("%d\n",m.x); struct a1 { int x; int y; }b={1,3}; printf("%d\n",b.x); struct a2 { int...原创 2021-09-15 15:10:19 · 105 阅读 · 0 评论 -
编写DLL文件速成
1.新建2.添加功能// dllmain.cpp : 定义 DLL 应用程序的入口点。#include "pch.h"//a函数void aaa(){}//函数void capigu(){}BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved .原创 2021-08-23 17:39:27 · 412 阅读 · 0 评论 -
文件删除--DeleteFile
头文件:#include<Windows.h>代码块:char file_path[] = "C:\\Users\\Administrator\\Desktop\\1.doc";DeleteFile(file_path);原创 2021-08-23 12:42:20 · 507 阅读 · 0 评论 -
遍历文件夹里的个数
需包含头文件#include<windows.h>原创 2018-03-16 10:05:25 · 190 阅读 · 0 评论