I think it's a very simple question but I have less experience with command line. I have an old C program I want to run. It shows the following text:
/* 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. */ I tried (in cmd):
gcc tw_r2fft.c 1024 > outputfile.c gcc's error message was:
gcc: 1024: No such file or directory I tried some variations but without success.
- What is the right way?
- Where can I find a general description for cmd - to avoid a question at stackoverflow the next time? (I looked at http://gcc.gnu.org/onlinedocs/gcc-4.8.1/gcc/ but didn't find the answer efficiently)