由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - code
相关主题
[转载] UNIX下的strtok偶要疯了!
[转载] 活见鬼了---搞不定的程序[转载] 为什么会在调用malloc时Segmentation fault?
[转载] 大侠救命哪!!![转载] Re: 为什么会在调用malloc时Segmentation fault?
who knows how to view the core file?大侠帮忙看一下!
interview questionalloc memory in UNIX
how to get code and data segment in solaris[转载] help about C: realloc
lp service produce segmentation faultsegmentation fault 求救
segmentation fault when using "script"[转载] 老板的程序在unix上运行没问题
相关话题的讨论汇总
话题: include话题: pid话题: utmpx话题: null话题: tx
进入Unix版参与讨论
1 (共1页)
j***i
发帖数: 2
1
#include
#include
#include
#include
#include
int main()
{
struct utmpx *U;
while ((U = getutxent())!=NULL) {
printf ( "%s", U -> ut_pid);
}
return 0;
}
I wrote these lines but it said that "Segmentation Fault (core dumped)"
Could you give me some suggestion. TX
s*******m
发帖数: 58
2
pid stuffs are generally integer, not string. maybe u->ut_pid = 0

【在 j***i 的大作中提到】
: #include
: #include
: #include
: #include
: #include
: int main()
: {
: struct utmpx *U;
: while ((U = getutxent())!=NULL) {
: printf ( "%s", U -> ut_pid);

1 (共1页)
进入Unix版参与讨论
相关主题
[转载] 老板的程序在unix上运行没问题interview question
请教用GCC编译中的关于内存的选项how to get code and data segment in solaris
[转载] 请教: intel fortran 的 segmentation falp service produce segmentation fault
Unix下好好的到了linux下segment faultsegmentation fault when using "script"
[转载] UNIX下的strtok偶要疯了!
[转载] 活见鬼了---搞不定的程序[转载] 为什么会在调用malloc时Segmentation fault?
[转载] 大侠救命哪!!![转载] Re: 为什么会在调用malloc时Segmentation fault?
who knows how to view the core file?大侠帮忙看一下!
相关话题的讨论汇总
话题: include话题: pid话题: utmpx话题: null话题: tx