开发者

Mac C run in window

开发者 https://www.devze.com 2023-01-03 04:22 出处:网络
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 se开发者_Python百科parate GUI i can use for executing compiled c programs?Have a look

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 se开发者_Python百科parate GUI i can use for executing compiled c programs?


Have a look at Pashua.


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.


You can run/develop C/C++ programs in XCode on Mac OS X. From within XCode its cmd-B to build, cmd-enter to run. XCode is the Mac IDE which you can download or its comes as an optional install or your Mac OS install disks.

XCode also supports code completion - hit ESC.

Also see: Working comfortably in C using Eclipse

0

精彩评论

暂无评论...
验证码 换一张
取 消