Ta上传的资源 (0)

提供了许多线程间通信的实例程序。用linux下的C语言实现。-Provides many examples of thread communication procedures. Under linux using C language.
C 7

【程序63】题目:画椭圆ellipse 1.程序分析:2.程序源代码:#include "stdio.h"#include "graphics.h"#include "conio.h"main(){int x=360,y=160,dri

总结了历年C语言笔试试题,有助于学习者更好的学习C语言
C 20

#include "stdlib.h"#include "stdio.h"struct list{ int data;struct list *next;};typedef struct list node;typedef node *link;link de

题目:创建一个链表。1.程序分析: 2.程序源代码:/*creat a list*/#include "stdlib.h"#include "stdio.h"struct list{ int data;struct list *next;}
C 22

main(){int number[10];input(number);max_min(number);output(number);}input(number)int number[10];{int i;for(i=0;i
C 12

SOCKET多线程,使用TCP连接,当有一个连接请求时候,建立一个线程。共有两个文件,一个Server,还有一个是Client-SOCKET multithreading, the use of TCP connections, when a link request, the establishm
C 13