摘要:
c 可变参数 :gcc -g -Wall -O0 fuck.c -o fuck#include <stdlib.h> /* 說明 malloc, NULL, size_t */#include <stdarg.h> /* 說明 va_ 相關類型和函數 */#include <string.h> /* 說明 strcat 等 */char *vstrcat(const char *first, ...){ size_t len; char *retbuf; va_list argp; char *p; if(first == NULL) return NULL 阅读全文
摘要:
html 模板1:download<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/h 阅读全文