///Segmentation fault
段错误
可能有未初始化的变量
导致段错误的几种情况
1、 引用一个包含非法值的指针(当然包括空指针)。
2、 未得到正确的权限的时候进行访问,例如往只读的内存地址写数据。
3、 内存越界(数组越界,变量类型不一致等)
///error: too few arguments to function ‘sleep
函数sleep参数过少。
///undefined reference to `pthread_create'
对‘pthread_create’未定义的引用。
由于pthread库不是Linux系统默认的库,连接时需要使用库libpthread.a,所以在使用pthread_create创建线程时,在编译中要加-lpthread参数
///error: unterminated #ifndef
缺少#endif
///执行用户程序就出现段错误
解决方法:编译的应用程序加扩展名.out
///conflicting types for 'pass'
类型冲突
///incompatible implicit declaration of built-in function
不兼容的隐式声明与内建函数