我認爲這是一個非常簡單的問題,但我對命令行的使用經驗不多。我有一個我想要運行的舊C程序。它顯示了以下文字:如何用gcc參數運行(並編譯)一個C文件?
/* This is a stand-alone program intended to generate ... It is called*/
/* as follows: */
/* */
/* tw_r2fft N > outputfile.c */
/* This program will generate the ... array 'w' */
/* and output the result to the display. Redirect the */
/* output to a file as shown above. */
我想(在CMD):
gcc tw_r2fft.c 1024 > outputfile.c
gcc的錯誤信息是:
gcc: 1024: No such file or directory
我嘗試了一些變化,但沒有成功。
- 什麼是正確的方法?
- 我在哪裏可以找到cmd的一般描述 - 以避免下一次在stackoverflow的問題? (我看着http://gcc.gnu.org/onlinedocs/gcc-4.8.1/gcc/但沒有找到有效的答案)