急!有三个线程ID分别是A、B、C,请有多线编程实现,在屏幕上循环打印10次ABCABC… 用linux下的c实现!

给出思路就行!... 给出思路就行! 展开
 我来答
KEBI12431111
2011-06-19 · 超过27用户采纳过TA的回答
知道答主
回答量:113
采纳率:0%
帮助的人:0
展开全部
gcc Thread.c -o Thread -lpthread
#include <stdio.h>
#include <pthread.h>
void main()
{
pthread_t t1 , t2 , t3;
void *p_msg(void *);
pthread_create(&t1,NULL,p_msg,(void * )"A ");
pthread_create(&t2,NULL,p_msg,(void * )"B ");
pthread_create(&t3,NULL,p_msg,(void * )"C");
pthread_join(t1, NULL);
pthread_join(t2, NULL);
pthread_join(t3, NULL);
}
void *p_msg(void *m)
{
int i;
for(i = 0 ; i < 10 ; i ++)
{
printf("%s",m);
fflush(stdout);
sleep(1);
}
return NULL;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友17ef5fb
2011-06-19
知道答主
回答量:2
采纳率:0%
帮助的人:0
展开全部
//文件:谈闹扒Thread.c
//编译命令:gcc Thread.c -o Thread -lpthread
#include <stdio.h>
#include <pthread.h>
void main()
{
pthread_t t1 , t2 , t3;
void *p_msg(void *);
pthread_create(&t1,NULL,p_msg,(void * )"A "含昌);
pthread_create(&t2,NULL,p_msg,(void * )"B ");
pthread_create(&t3,NULL,p_msg,(void * )"C\n");
pthread_join(t1, NULL);
pthread_join(t2, NULL);
pthread_join(t3, NULL);
}
void *p_msg(void *m)
{
int i;
for(i = 0 ; i < 10 ; i ++)
{
printf("%s"弯猛,m);
fflush(stdout);
sleep(1);
}
return NULL;
}
更多追问追答
追问
程序执行没有问题,但是打印的时候却不是按ABC来打印的,如何解决这个问题呢?
追答
pthread_create(&t3,NULL,p_msg,(void * )"C\n");
你把这行的 \n 给去掉,顺序应该没什么问题,就是不换行了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式