Compiling in KDevelop

Status
Not open for further replies.

saurabh.sauron

Ambassador of Buzz
how do u compile a program in KDevelop? i wrote a simple program but cant find a compile option. also, how do u execute it? pls help
thnx
 

harmax

Journeyman
tryin to figure that out for the past 10+/- years, people hoo use it please educte us on it usage, adv and blah blah
 

Venom

Journeyman
Which language is KDev used for? Cause I use Kate for Python/C++ and so on. So to compile Python and Cpp i use the terminal...
 
OP
saurabh.sauron

saurabh.sauron

Ambassador of Buzz
look at this screenshot...
i tried compiling with the terminal and got this error...
*i47.photobucket.com/albums/f177/saurabh_sauron/sc.gif

BTW, how do u break the execution when u dont have getch(); ???
 

Venom

Journeyman
You dont have to use a Getch, if you really need to break, use return maybe. Getch is outdated, TC ?
 

JGuru

Wise Old Owl
For C/C++ IDE in Linux , use Anjuta (*anjuta.org/ ) , for Python use 'IDLE' IDE.
Also check this link:
*wiki.python.org/moin/IntegratedDevelopmentEnvironments
For KDevelop , check their website : *www.kdevelop.org/
 
Last edited:

JGuru

Wise Old Owl
This one works fine!!

Code:
#include <iostream>

using namespace std;

int main()
{
     cout<<"Hello C++!!";
     return 0;
}


Checkout this C++ Tutorial:

*www.glenmccl.com/lang.htm

Ofcourse in Linux, there are some minor variations!!
 
Last edited:
Status
Not open for further replies.
Top Bottom