tags:

views:

56

answers:

2

Hello,

Is it possible to run compiled C and C++ Files on a mac without opening and running it in terminal? E.G is there a separate GUI i can use for executing compiled c programs?

+1  A: 

Terminal IS a GUI; it provides you with access to the shell while you're still in the window system. I don't know what you'd want this other GUI to do that Terminal isn't doing for you. You would still need to provide the file path to this other program, which it would then load for execution, and it would still need to open standard input / standard output, etc.

If you have the source code, however, you can use an IDE. Eclipse works well for that, but there are plenty of others.

danben
The program executed currently using terminal, but i would like a interface that users see more inviting, other than the terminal, however the user still needs to provide user input
Daniel
@Daniel: So you want to create a gui for your program?
Lucas
@Lucas It's a terminal application, but i just need a GUI for the user input and status actions
Daniel
+2  A: 

Have a look at Pashua.

lhf
Pashua does not support C/c++ programs
Daniel
Pashua can read interface definitions from a file or stdin, so any language can be used to drive Pashua.
lhf