• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.
  • The forums have been upgraded with support for dark mode. By default it will follow the setting on your system/browser. You may override it by scrolling to the end of the page and clicking the gears icon.

C++ for windows...

Joined
Jun 5, 2007
Messages
2,167 (0.33/day)
Location
Metro Manila, Philippines
System Name Zangief (Reborn) 2.0 AM4 not dead yet!
Processor AMD Ryzen R7 5700X3D (tweaked PBO)
Motherboard Gigabyte GA-AX370 Gaming K7 Rev 1.0 BIOS F53d
Cooling Noctua NH-D15 Push / Push Config | 2x ML120 | 2x Phanteks 120 mm
Memory 2x16GB G.Skill Trident Z Neo RGB @ 3600mhz CL 18 -> running 3800mhz @ 1.37v
Video Card(s) Asus RTX 3080 Rog Strix Gaming OC
Storage 250 GB Samsung Evo 850 / 1tb WD Black / 4tb WD Blue / 512GB Adata XPG Pro SX8200
Display(s) Acer Predator XB271HU |Asus VX239H 23" AH-IPS Led
Case Phanteks Enthoo Pro M TG
Audio Device(s) On Board Realtek HD | Steelseries Arctis Nova Pro Wireless
Power Supply Seasonic Focus GX V4 850 Watts ATX 3.1
Mouse Logitech G903
Keyboard AKKO 5098N (Otemu Cocoa Brown Lubed) | Tecware Spectre 96 (Akko Lavander Purple V3 lubed)
Software Windows 11 Pro 24H2
Could anybody point me to a great windows based C++ programming platform, there's Borland Turbo C++ for windows but you gotta pay for it... Are there any more 3rd party applications that are freeware, which has complete headers and stuff... Just wanted to refresh the rusty c++ skills for my new job.

Thanks in advance
 
microsoft visual studio is by far the best and most complete platform, but not free

there are free express editions with limited features. should be good for most new users though
 
Btw thanks sir! Found one on the stickies and now using Bloodshed Dev-C++ :D

Wish it works well with windows :(
 
Till I can get hold of a legit version of visual studio, then I'll be temporarily using this one, MUST get visual studio though, as it was recommended by you 2 most respected people here on TPU, thanks guys more power....

Hope I could make my rusty skills improve and come back to me lol.. Also your programming section helped alot on re-learning all the C ++ stuff :D More power TPU
 
I'm not against MS Visual Studio C++ but it doesn't use the standard C++ language but instead it uses some strange MS language used in all the Visual Studios (probably because it uses the dot net framework so all Visual Studios seem to have very similar languages). I noticed this when i was testing with different C++ IDE, the Visual Studio C++ language is very similar to Visual Basic language so if you start using Visual Studio you won't be able to use any others since they use a language of their own.

Also, I won't say that Visual Studio is the best anyway since it loads much slower and uses a lot more HHD storage space. And it isn't if there is anything good about it except a visual basic programmer could program with this.

I recommend wxDev-C++ from http://wxdsgn.sourceforge.net/
This is just an improvement on Dev-C++ so it can make GUIs more easily, has all the features needed for a better C++ IDE and it looks more "professional".
I found this much easier to use, saved a lot of RAM and HHD, was much faster, free and it used the correct C++ language.
 
Thanks guys!!
 
I'm not against MS Visual Studio C++ but it doesn't use the standard C++ language but instead it uses some strange MS language

did you write a .net project? if yes, thats managed code and is different to standard c++.

unmanaged projects can be written using the standard c++ code. to write a win32 gui you can either use the windows api (painfully unproductive) or mfc which is a wrapper around all the api using c++ classes by microsoft
 
microsoft visual studio is by far the best and most complete platform, but not free

there are free express editions with limited features. should be good for most new users though

+1
 
Finally going to get a hold of visual studio, gonna ask uncle to get me 1 from the states :D

Thanks fellas
 
did you write a .net project? if yes, thats managed code and is different to standard c++.

unmanaged projects can be written using the standard c++ code. to write a win32 gui you can either use the windows api (painfully unproductive) or mfc which is a wrapper around all the api using c++ classes by microsoft

I know you can disable the .net thing to make it an unmanaged project but that destroys the purpose of using Visual Studio so that it's not any different to other C++ IDE except that it loads slower since it uses much more RAM and it uses a larger space on the HHD.

VS's value for it's cost is very bad since why would anyone want to pay hundreds for an IDE, which doesn't actually do anything except it's just a fancy text editor. The express edition is free but it puts limitations on what can be compiled so it'll be much better to use some other free IDE with a good compiler then it's fine.
 
Back
Top