The ones who are crazy enough to think they can change the world are the ones who do.- Steve Jobs
Let us install IDE in your windows machine in a single click.
IDE refers to Integrated Development Environment is a software that act as a programmers simulator. Installing IDE to run your C program is the most easiest way.
Click Here to DownloadLet us install Xcode in your Macintosh in a single click.
$ gcc --version gcc (GCC) 4.4.0 Copyright (C) 2009 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. $ whereis gcc /usr/bin/gcc $ whereis make /usr/bin/make
Step 1: Open Terminal or press CTRL + ALT + T.
Step 2: Type the following commands
sudo apt-get install build-essential
Step 3: After entering the above command, your terminal looks alike the following image.
Step 4: Now, C compiler is installed in your linux system. Open your text editor(gedit)
Step 5: Type any of your favourite C program and create a new folder (name : files) in your desktop and save it there for convenience
Step 6: Open the terminal and set a path to your c programing file
Step 7: Now, type gcc -o hello_output_file file_name.c
Step 8: Now your .exe file for your c program is generated in the name hello_output_file
Step 9: Type ./hello_output_file to see your output.
We may make mistakes(spelling, program bug, typing mistake and etc.), So we have this container to collect mistakes. We highly respect your findings.
© Copyright 2019