Question:

How to open C in a computer?

by  |  earlier

0 LIKES UnLike

Computers

 Tags:

   Report

9 ANSWERS


  1. You must have a C compiler on your PC..

    You can download TURBOC compiler available on the internet but I don't think that's legal..

    After you have downloaded/purchased TURBOC, open it and this will now its installation..

    After the installation is over, open TC to run C..

    Cheers..

    -Joseph


  2. You can get started with this video that shows you how to install a free C/C++ compiler:

    http://xoax.net/comp/cpp/console/Lesson0...

    You can go through the tutorials too and if you have questions on them or anything else in C++, please post to me here:

    http://xoax.net/forum/

    Enjoy!

  3. u must have software of C in your computer.

  4. press c

  5. Notepad can be used to view a C source code file, although an editor specifically enhanced for programmers will colour code some of the source - NotePad++ is one freeware example.

  6. you should copy the C compiler / software into your system and try to run the corresponding  .exe file  if there is any problem while testing the programs,, , do update the path in the options menu for "lib", "bin" directories..

  7. C is a compiler, not an interpreter.  You open an interpreter and load or type in a program you then tell it to run.  Or issue a command like "basic count.bas" or "wish temperature.tkl" from the command line.

    You can install either a command-line compiler or one with an Integrated Debugging Editor (which you will usually install on Windows).  With a command line compiler, such as GCC or DMC on Windows, you open your favorite text editor and write your program, save it with an extension such as .c , .cpp, or .cc and run the compiler:  "g++ -o suriname suriname.cc .

    With an IDE, an integrated debugging editor, you open it, type it in, save it (hopefully) then select compile from the menu.  If there are any mistakes, then you should find that your cursor will have moved to the first identified line, while a list of the mistakes will appear in a separate window.  If you are working from the command line in a shell, then you will see a similar list of problems between the command and the next appearance of the prompt.  It's a good idea to try to understand and fix the first problem first, because the others may only be problems because the compiler couldn't parse the first of these lines.

    In other words, a C/++ Compiler opens and closes quickly.  to open a program to program with it, generally use an IDE.

  8. You must have a C-compiler installed on your computer. It may depend on what operating system you are using. If you are using one of Linux distros   you may not need to install a compiler explicitly. But if you are using Windows you must install one. TurboC is one of the famous C-compilers on Dos environment.

  9. just click on start panel which is in the left most side of ur sreen and bottom side, step 2; click on run.. and type c/: or c prompt. that's it....

Question Stats

Latest activity: earlier.
This question has 9 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.