Results 1 to 10 of 10
hi every one ,
i need some help about where i write the C++ programs in Mandriva 2007 ?...
- 12-23-2006 #1
where C++ ?
hi every one ,
i need some help about where i write the C++ programs in Mandriva 2007 ?
- 12-23-2006 #2
There are many good IDE`s for C/C++.
- Anjuta
- Kdevelop
- Eclipse
You will have to install gcc compiler first. Use package manager or google to download it.
- 12-23-2006 #3
Sometimes a simple text editor is better for a noob, then compile it from the command line
Put your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 12-23-2006 #4I never use text editor for this because of following reasons:
Originally Posted by Juan Pablo
- IDE marks and colors peaces of program
ex.
- I use IDE because it has debugger builtinCode:int main() { //this is comment and it is in green cout << "the string is colored red" <<endl; return(0); }
- IDE compiles and runs program if you press one button for example "F9"
If you have to compile program manualy you have to write command manualy.
- etc.
jan
- 12-23-2006 #5Many text editors will do this now as well. For example, gedit will do syntax highlighting with many languages. It will color code reserved words based on the file extension (.cpp, .java, etc.). It actually recognizes more languages than some of the IDE's I've used, like FORTRAN and Pascal. But, IDE's have some additional features that make them more useful. I would say if amr already knows the process of compiling, linking, loading....then he should use an IDE but if he doesn't, Juan Pablo's advice is wise. It's good to have an understanding of what the IDE is actually doing than to just sit there and make use of it.
Originally Posted by jan1024188
- 12-24-2006 #6It is called syntax highlighting, have you used vim or kate?marks and colors peaces of programPut your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 12-24-2006 #7ok i think that gcc are installed but where i find
Originally Posted by jan1024188
- Anjuta
or
- Kdevelop
or
- Eclipse
is it allready installed in mandriva 2007 ? or i need to get and install it ?
- 12-24-2006 #8
You can install them with urpmi
Put your hand in an oven for a minute and it will be like an hour, sit beside a beautiful woman for an hour and it will be like a minute, that is relativity. --Albert Einstein
Linux User #425940
Don't PM me with questions, instead post in the forums
- 12-24-2006 #9ok i am downloading Eclipse now .
Originally Posted by Juan Pablo
.tar.gz
can i install it easy ?
- 12-31-2006 #10
yes...
Im not sure but I think that you dont have to install eclipse to run it..../configure
make
make install


Reply With Quote
