• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

C programming question

Onceler

Golden Member
If I write code in code::blocks on Debian will it also work on other flavors of Linux?
What if I was making it with wxwidgets, would it work?
If not, does Ubuntu and or Suse have a visual programming thing?
 
I'm not familiar with wxwidgets specifically but typically C/C++ code is portable. BUT it really depends on the library. You'd have to check wxwidgets to see what OS it supports. Typically it should be fairly portable across at least Linux distros though. Ex: if you use Debian it should work in Fedora.

I find the more libraries you use the more complicated things can get though, like on one system the library may not be at the same location as on another system, and all hell breaks loose. This is where dependancy hell comes in.
 
code:: blocks is GPL v 3.0 so it will work for all GNU/Linux OSes as far as license goes.
WXWidgets are LGPL which should work for all but I am not sure
 
If I write code in code::blocks on Debian will it also work on other flavors of Linux?
What if I was making it with wxwidgets, would it work?
If not, does Ubuntu and or Suse have a visual programming thing?
Yes, it will work.
 
Back
Top