由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Unix版 - C++5.0的初级问题
相关主题
where is libstdc++求助
Help: convert // to /* */ in C code?Unix下是否有记录所有用户command history的工具?
[转载] ask a question.AIX shell configuration
how to get rid of the ^M in files?how to let a command set in .cshrc run?
怎么才能在Unix里连续跑10个c写的程序 (转载)初级问题:怎么打开.rpm文件阿?
how come this stupid question?Re: compile c
any debugging tool?A problem
UNIX dummy Questions?帮帮忙,用C作一个SHELL
相关话题的讨论汇总
话题: c++话题: path话题: cc话题: enter话题: execute
进入Unix版参与讨论
1 (共1页)
j**t
发帖数: 439
1
机子上的C++刚由4.2换成5.0. 用CC myfile.c 生成的 a.out怎么不能运行?
输入a.out然后Enter,
显示"command not found". 可是明明看到a.out在那里呀.
thanks
d******e
发帖数: 2265
2
./a.out?
have you set . in $path?

【在 j**t 的大作中提到】
: 机子上的C++刚由4.2换成5.0. 用CC myfile.c 生成的 a.out怎么不能运行?
: 输入a.out然后Enter,
: 显示"command not found". 可是明明看到a.out在那里呀.
: thanks

j**t
发帖数: 439
3
haha,./a.out果然就行了.多谢!
这是怎么回事? 我什么参数都没改呀?

【在 d******e 的大作中提到】
: ./a.out?
: have you set . in $path?

d******e
发帖数: 2265
4
if you want to execute any thing in the current directory
remember add this in your .cshrc
set path=(. $path)
coz by default shell will not search . to exec the file
you must give the path ./ to shell to execute it..

【在 j**t 的大作中提到】
: haha,./a.out果然就行了.多谢!
: 这是怎么回事? 我什么参数都没改呀?

j**t
发帖数: 439
5
可我以前用C++4.2生成的*.out怎么就可以呢?

【在 d******e 的大作中提到】
: if you want to execute any thing in the current directory
: remember add this in your .cshrc
: set path=(. $path)
: coz by default shell will not search . to exec the file
: you must give the path ./ to shell to execute it..

d******e
发帖数: 2265
6
这我就不清楚了,不过什么是C++ 4.3
Sun 上面的吗?

【在 j**t 的大作中提到】
: 可我以前用C++4.2生成的*.out怎么就可以呢?
j**t
发帖数: 439
7
yes, 是Sun上面的.
C++4.2就是:
CC -V, Enter,显示:
CC: WorkShop Compilers 4.2 30 Oct 1996 C++ 4.2

【在 d******e 的大作中提到】
: 这我就不清楚了,不过什么是C++ 4.3
: Sun 上面的吗?

1 (共1页)
进入Unix版参与讨论
相关主题
帮帮忙,用C作一个SHELL怎么才能在Unix里连续跑10个c写的程序 (转载)
Abort(coredump) ??????????????how come this stupid question?
how to transfer C program run under VC to Unix?any debugging tool?
how to setup lib path?UNIX dummy Questions?
where is libstdc++求助
Help: convert // to /* */ in C code?Unix下是否有记录所有用户command history的工具?
[转载] ask a question.AIX shell configuration
how to get rid of the ^M in files?how to let a command set in .cshrc run?
相关话题的讨论汇总
话题: c++话题: path话题: cc话题: enter话题: execute