Click to See Complete Forum and Search --> : C language


pipoy
02-14-2001, 06:44 AM
i want to C software in my linux box how can i do it. Can anybody give me site where i can download the said software. :confused:

chimaybleue
02-14-2001, 06:48 AM
To use C with Linux, you'll need gcc and all it's deps to be installed ... To type your source code, you can use what in French is called 'Editeur avancé' (it's something like 'Advanced editing tool'). It's not specific for C, but it works fine !

X_console
02-14-2001, 11:07 AM
Every Linux distribution comes with a C\C++ compiler and libraries and tools. Check your Linux CD and make sure you install the Development tools. To compile a C program hello.c :

gcc -o hello.exe hello.c

To compile a C++ program:

g++ -o hello.exe hello.cpp

Note that in Linux you don't need to have the ".exe" suffix. It's just there so you know which one is the executable and which is the source file.