
Linux-C
widlisyx
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Sin函数的实现,根据无穷级数展开,求的Sin函数的实现方法
Sin函数的实现,根据无穷级数展开,求的Sin函数的实现方法原创 2020-02-03 15:46:25 · 1790 阅读 · 0 评论 -
Interactive input on c-languge
#include<stdio.h> void startTips() { char ch; //int intN; do{ printf("do you want continue ?"); // input int //scanf("%d",&intN); scanf(" %c"...原创 2020-02-03 15:13:41 · 131 阅读 · 0 评论 -
Daemon Program Step!
Example: _POSIX_C_SOURCE; #include <stdio.h> #include <stdlib.h> #include <string.h> #include<fcntl.h> #include <sys/types.h> #include <unistd.h> #include <sys...原创 2020-02-03 14:48:47 · 254 阅读 · 0 评论 -
pthread complie error
undefined reference to `pthread_once' undefined reference to `pthread_create' Solve the question,by install depend: Posible1: sudo apt-get install manpages-posix manpages-posix-dev Posible ...原创 2020-02-02 17:43:47 · 171 阅读 · 0 评论 -
Check Current OS ,Is support POSIX-Thread?
#include <stdio.h> #include<unistd.h> #include<stdlib.h> int main() { int support_level = 0; #ifdef _POSIX_VERSION support_level = 1; #endif if(support_level == 1) ...原创 2020-02-02 17:10:05 · 227 阅读 · 0 评论