发布时间:2015-06-30 22:24:37
<span style="font-size:24px;">1、内存段错误<br /><strong></strong><span style="font-size:18px;"><strong>代码段:该部分的数据都是只读,对其进行写操作会引起错误,错误可以在编译阶段检测出。<br />数据段/bss段:如果未进行初始化,那么会有警告,系统会默认的将这部分数据赋值为0。<br />栈空间数据:<br />.........【阅读全文】
发布时间:2015-06-02 10:14:36
编程实现三个线程ABC,并让它们顺次打印ABC点击(此处)折叠或打开#include<stdio.h>#include<stdlib.h>#include<pthread.h>#include<semaphore.h>#include<string.h>/* *声明3个线程.........【阅读全文】