
demo
长风_破晓
技术爱好者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Word or PowerPoint Document to Pdf
.doc, .docx, .ppt, .pptx to .pdf for Windows Code Snippets for Word Document Code Snippets for PowerPoint Document .doc, .docx, .ppt, .pptx to .pdf for Windows Code Snippets for Word Document On Error Resume Next Const wdExportFormatPDF = 17 Set oW原创 2023-09-10 20:11:23 · 141 阅读 · 0 评论 -
第一次用C写泛型
#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct set { void * data[100]; int count; } set; set s_integer, s_double, s_string; void * el_alloc(size_t unit_size, int el_cnt); int set_add(set * s, void * el, si原创 2022-10-28 17:46:12 · 143 阅读 · 0 评论