![]() |
|
Learning C with Psycho_Coder | Part:1 - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: C, C++, & Obj-C (https://sinister.ly/Forum-C-C-Obj-C) +--- Thread: Learning C with Psycho_Coder | Part:1 (/Thread-Learning-C-with-Psycho-Coder-Part-1) |
RE: Learning C with Psycho_Coder | Part:1 - Daedalus - 11-24-2013 (11-24-2013, 11:27 AM)Geo777 Wrote: Hello , I'm learning C programming language. How to compile and C codes in run commander ? I tried it too many times , but the commander doesn't recognize "gcc" , what can I do ?You probably need to install gcc then. Are you running Linux or Windows? If Linux, I'll assume you're on Ubuntu so try: sudo apt-get install gcc RE: Learning C with Psycho_Coder | Part:1 - Daedalus - 11-24-2013 (11-24-2013, 11:27 AM)Geo777 Wrote: Hello , I'm learning C programming language. How to compile and C codes in run commander ? I tried it too many times , but the commander doesn't recognize "gcc" , what can I do ?You probably need to install gcc then. Are you running Linux or Windows? If Linux, I'll assume you're on Ubuntu so try: sudo apt-get install gcc RE: Learning C with Psycho_Coder | Part:1 - Geo777 - 11-24-2013 No , I'm running windows. RE: Learning C with Psycho_Coder | Part:1 - Geo777 - 11-24-2013 No , I'm running windows. RE: Learning C with Psycho_Coder | Part:1 - Daedalus - 11-24-2013 (11-24-2013, 12:11 PM)Geo777 Wrote: No , I'm running windows.In that case I recommend MinGW. Install this and the gcc command should be available. I also suggest installing an IDE (Integrated Development Environment). My favorite is Code::Blocks. If you go this route, don't separately install MinGW as you can get it bundled with Code::Blocks. RE: Learning C with Psycho_Coder | Part:1 - Daedalus - 11-24-2013 (11-24-2013, 12:11 PM)Geo777 Wrote: No , I'm running windows.In that case I recommend MinGW. Install this and the gcc command should be available. I also suggest installing an IDE (Integrated Development Environment). My favorite is Code::Blocks. If you go this route, don't separately install MinGW as you can get it bundled with Code::Blocks. RE: Learning C with Psycho_Coder | Part:1 - Geo777 - 11-24-2013 Thanks you for the answer but I have already installed MinGW. I Already checked "bin" folder ,but no problem found here...
RE: Learning C with Psycho_Coder | Part:1 - Geo777 - 11-24-2013 Thanks you for the answer but I have already installed MinGW. I Already checked "bin" folder ,but no problem found here...
RE: Learning C with Psycho_Coder | Part:1 - Daedalus - 11-24-2013 (11-24-2013, 12:22 PM)Geo777 Wrote: Thanks you for the answer but I have already installed MinGW. I Already checked "bin" folder ,but no problem found here...You need to edit your PATH variable so that the operating system knows where to find the gcc program, thus allowing you to run it from the command-line. Step-by-step instructions can be found here. Scroll down to the "Environment Settings" section. RE: Learning C with Psycho_Coder | Part:1 - Daedalus - 11-24-2013 (11-24-2013, 12:22 PM)Geo777 Wrote: Thanks you for the answer but I have already installed MinGW. I Already checked "bin" folder ,but no problem found here...You need to edit your PATH variable so that the operating system knows where to find the gcc program, thus allowing you to run it from the command-line. Step-by-step instructions can be found here. Scroll down to the "Environment Settings" section. |