
C语言
daa20
这个作者很懒,什么都没留下…
展开
-
__attribute__((__used__)) 和 __attribute__((__section__(“*“ “*“)))的使用
C语言注册函数和调用函数。见:haproxy代码。原创 2023-11-06 20:23:35 · 635 阅读 · 0 评论 -
TAILQ练习的一个例子
queue.h:/* * List definitions. */#define LIST_HEAD(name, type) \struct name { \ struct type *lh_first; /* first element */原创 2021-01-30 17:25:27 · 249 阅读 · 0 评论 -
使用函数发送命令行
$ cat test.c#include <stdio.h>#include <string.h>int run_and_get_output(const char* cmd, char *output, int max_len){ char buffer[1000] = {0}; int len = 0; int copy_len = 0; FILE *pipe = NULL; pipe = popen(cmd, "r");原创 2020-11-13 21:21:49 · 391 阅读 · 1 评论 -
【c语言】struct赋值case
struct 变量高效赋值的一个例子:# cat test.c#include <stdio.h>#include <stdlib.h>typedef struct _tag_t_{ int i; int j;} t_t;typedef struct _tag_tst_{ int a; int b; t_t t;} tst_t;void func(void){ tst_t *tst1 = NULL;原创 2020-08-05 09:49:56 · 484 阅读 · 0 评论 -
使用strip与eu-strip给程序减肥
https://blog.youkuaiyun.com/weixin_34267123/article/details/85733011原创 2020-06-02 13:36:01 · 422 阅读 · 0 评论 -
巧用union的一个例子
转自:https://www.cnblogs.com/qcloud1001/p/9585724.html在x86-64下使用RDTSC指令,直接从寄存器读取,需要输入2个参数,比较常见的实现:static inline uint64_trte_rdtsc(void){uint32_t lo, hi; __asm__ __volatile__ ( "rdtsc" : "=a"(lo), "=d"(hi) ); return ((unsig原创 2020-05-27 12:28:10 · 212 阅读 · 0 评论 -
gdb加载动态链接库和addr2line的使用方法
1、加载动态库:(1) gdb ./a.out coredump(2)set solib-search-path ./lib(3)bt2、addr2line的使用:# addr2line --helpUsage: addr2line [option(s)] [addr(s)] Convert addresses into line number/file name pairs. If ...原创 2020-01-14 22:37:48 · 1113 阅读 · 0 评论 -
flex & biosn 2
出自:lex和yacc(第二版)例子,文件1:[root@localhost ~/test/flex_bison/flex/ch1-05]# cat test1.l%{#include <stdio.h>#include <stdlib.h>#include <string.h>#include "test1.tab.h"#define L...原创 2019-12-26 17:13:01 · 340 阅读 · 0 评论 -
flex学习1
学习《lex与yacc(第2版)》时,根据第一章节04小结,重写了如下用例,用于理解和加深对flex的掌握。# cat test1.l%{/*symbol table to recognize words */enum { LOOKUP = 0, VERB, ADJ, ADV, NOUN, PREP, PRON, CONJ}...原创 2019-12-25 17:30:58 · 195 阅读 · 0 评论 -
关于左移的缺陷
# cat test.c #include <stdio.h>#include <stdint.h>voidfunc_1(void){ uint32_t mask = 0xFFFFFFFF; uint32_t masklen = 0; printf("mask: %x\n", (mask << (32 - masklen))...原创 2019-12-19 14:48:17 · 717 阅读 · 0 评论 -
C 结构体与内存申请的混搭使用
1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <assert.h> 4 #include <string.h> 5 6 typedef struct _tst_t { 7 int a; ...原创 2019-12-12 10:00:16 · 210 阅读 · 0 评论 -
关于发送邮件附件中文文件名称乱码的问题
问题描述:发送压缩文件到qq邮箱,发现标题为中文名称,能正常显示,但是附件的中文名称为乱码。任务:解决附件中文名称的乱码问题。前期资料总结:1、SMTP乱码解决方案(源自https://blog.youkuaiyun.com/saokeliu/article/details/5194547)Smtp发送中文邮件的时候也会产生像ftp乱码的现象,不知道在网上这样的资料很少,让我们那些第一次遇到这种问题的...转载 2019-03-28 14:43:16 · 20827 阅读 · 1 评论 -
#line and __LINE__
#include #include int func();int main(){ printf("[%s,%d] this is main!\n",__FILE__,__LINE__); func(); return 0;}// ...#line 1 "QG-Copy Right"int func(){ printf("Hi,this is QG原创 2016-05-04 08:40:40 · 302 阅读 · 0 评论 -
在程序运行过程中使用gdb产生core文件
方法1、(1)先获取进程的PIDps -aux | grep test# ps -aux | grep testroot 6906 85.7 0.0 4212 356 pts/0 R+ 00:56 3:57 ./testroot 6978 0.0 0.0 112708 980 pts/1 R+ 01:01 0:00 g...原创 2019-08-13 13:43:18 · 1406 阅读 · 0 评论 -
gdb watch的使用
https://www.cnblogs.com/lonelycatcher/archive/2011/10/09/2204865.html例子:[root@localhost ~/test/test_2]# cat -n test.c 1 #include <stdio.h> 2 3 int 4 main(int argc, cha...原创 2019-08-13 13:53:44 · 1572 阅读 · 0 评论 -
source insight font set
source insight 3.51.设置字体大小options-document options ,找到screen fonts,即可打开字体设置界面设置全文字体大小2.往里添加中文注释或英文注释时,字间距很大。解决方法如下: (1)、Options->Style Properties (2)、左边Style Name下找到Comment Multi Line、Com...原创 2019-08-17 10:11:59 · 493 阅读 · 0 评论 -
调用malloc 发生crash的问题
一种原因是:多次free造成的。原创 2019-08-28 16:27:24 · 1539 阅读 · 0 评论 -
git-svn用法
转自:http://androider.iteye.com/blog/1423847 git-svn用法博客分类: Version Control检出一个已存在svn repository(类似于svn checkout) 我们可以通过git-svn clone命令完成这个操作: git-svn clone your_svn_repository_url从中心服务器的svn reposito转载 2017-03-21 17:08:53 · 498 阅读 · 0 评论 -
scanf的溢出控制与替代使用
如果str在堆中申请的空间较小,使用scanf(“%s”,str)时,很容易发生溢出,怎么解决呢???#include <stdio.h>#include <malloc.h>int main(int argc, char *argv[]){ char *str = (char *)malloc(10 * sizeof(char)); printf("please input(1原创 2017-03-20 17:22:42 · 3709 阅读 · 0 评论 -
a stranger program
#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */#define RESET(p,len) while(len>0) ((char*)p)[--len]=0void reset(void* p,in原创 2016-05-04 09:04:45 · 215 阅读 · 0 评论 -
mallo(0)
#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]){ char* p; if((p=(char*)malloc(0))==NULL)原创 2016-05-04 09:02:05 · 248 阅读 · 0 评论 -
crazy pointer
#include #include #include struct Student{ char* name; int age; };int main(int argc,char* argv[]){ struct Student s; //s.name = (char*)malloc(sizeof(char)*20); //少了这句,就会使s.name变成野指针原创 2016-05-04 09:01:03 · 240 阅读 · 0 评论 -
2D array and dynamic array and dynamic 2D array
#include #include #include //malloc()#include // memset()/* run this program using the console pauser or add your own getch, system("pause") or input loop *///-----------------------------原创 2016-05-04 08:53:41 · 446 阅读 · 0 评论 -
array used and char`s array and string`s array
#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int main(int argc, char *argv[]) { int a[5] = {0,1,2,3,4}; int* p = a;原创 2016-05-04 08:50:08 · 238 阅读 · 0 评论 -
pinter used
#include #include #include void test_1(){ int i = 2; int *p = &i; printf("%d, %08x\n",i,p); *p =10; printf("%d, %08x\n",i,&p);}void test_2(){ int* pI; char* pC; long* pL; double* pD原创 2016-05-04 08:46:38 · 279 阅读 · 0 评论 -
## used
#include #define Variable(x) #x#define NAME(n) name##n#define STRUCT(type) typedef struct _tag_##type type; \struct _tag_##typeSTRUCT(Student){ int ID; char* name;};void test_1(){原创 2016-05-04 08:44:53 · 506 阅读 · 0 评论 -
#pragma used
#include #include #pragma pack(4) //default value#if defined(ANDROID2_0) #pragma message("android-2.0") //only VS surpose #define VERSION "android 2.0"#elif defined(ANDROID4_0) #原创 2016-05-04 08:42:36 · 541 阅读 · 0 评论 -
#warning and #error
#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */#define HI "hi,I am OK!"int main(int argc, char *argv[]) { #ifndef COMMAND原创 2016-05-04 08:39:15 · 437 阅读 · 0 评论 -
# and #line and __FILE__ and __LINE__
//#和#line的使用 #include #define convert(x) #x //very good#define print(func,x) (printf("the %s ",#func),func(x)) //very goodint SUM(int x){ int ret; if原创 2016-05-04 08:36:03 · 281 阅读 · 0 评论 -
指针和二级指针的区别
如:int a = 10;int* pt = &a;指针是对普通变量的操作;等同与:int* a = 10;int** pt = &a;二级指针是对指针的操作。void test(){ int a = 10; int* pt = &a; int** ppt = &pt; cout << "a = " << a << endl;原创 2016-04-08 09:45:39 · 336 阅读 · 0 评论 -
实现加一秒后,年、月、日、时、分、秒的显示
//--------------实现加一秒后年月日时分秒的显示----------------struct _tag_data{ unsigned int year; unsigned char month; unsigned char day; unsigned char hour; unsigned char minute; unsigned char second; }原创 2016-03-10 09:28:10 · 860 阅读 · 0 评论 -
C语言的基础知识点
#include #include #include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */void test_1(){ int const a = 2; const int b = 3; int原创 2016-03-10 09:24:33 · 368 阅读 · 0 评论 -
strcmp函数的实现
#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop *///strcmp函数的实现,匹配成功返回0。否则返回-1int myStrcmp(const char* src,const char* dest){原创 2016-03-07 16:15:02 · 680 阅读 · 0 评论 -
指针常量与常量指针
DEV-C编辑器结果: printf("---------------------------------\n"); const int* ip = &a; //常量指针,,地址可变 //*ip = b; //[Error] assignment of read-only location '*ip' ip = &b; printf("------------原创 2015-12-23 14:49:09 · 299 阅读 · 0 评论 -
recursive
#include #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */int f(int n){ int ret = 0; if(n>1) { ret = n*f(n-1); } else if(n==1)原创 2016-05-04 09:05:43 · 385 阅读 · 0 评论 -
数组指针的使用
/*数组指针的使用*/#include <stdio.h>typedef int(AINT5)[5]; //数组类型为:int[5]typedef char(ACHAR2)[2];void test_1(){ AINT5 a; //等同于 int a[5] AINT5* a1 = &a; //等同于 int (*a1)[5] int i=0; printf(原创 2016-06-24 09:50:28 · 274 阅读 · 0 评论 -
当结构体遇到数组,简直了!!!
#include <stdio.h>#include <malloc.h>typedef unsigned char u8; typedef unsigned short u16;typedef unsigned int u32;typedef struct _tag_Test1{ u32 a; u8 b; u8 c;原创 2017-03-20 16:54:42 · 1298 阅读 · 0 评论 -
2017TenXun校招(9-11)
作者:feilengcui008链接:http://www.zhihu.com/question/31855632/answer/54747429来源:知乎著作权归作者所有,转载请联系作者获得授权。#include <stdio.h>int max(const int &a, const int &b){ return a>b ? a : b;}int min(const int转载 2016-09-12 14:48:52 · 454 阅读 · 0 评论 -
strcpy的使用--安全编程策略
#include <stdio.h>#include <assert.h>#include <malloc.h>char* myStrcpy(char* dst,const char* src){ char* ret = dst; assert(dst&&src);//安全编程策略,一定要写这一句代码,确保dst和src都不为空 while((*dst++ = *src原创 2016-06-23 10:38:23 · 491 阅读 · 0 评论 -
strlen的使用
#include <stdio.h>size_t myStrlen(const char* s){ size_t length = 0; while(*s++) //遇到\0就返回 { length++; } return length;}int main(void){ char* s1 = "hello"; char*原创 2016-06-23 10:10:04 · 1557 阅读 · 0 评论