• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 05:44
CET 11:44
KST 19:44
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2TL.net Map Contest #21: Winners12Intel X Team Liquid Seoul event: Showmatches and Meet the Pros10
Community News
BGE Stara Zagora 2026 announced9[BSL21] Ro.16 Group Stage (C->B->A->D)4Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win3RSL Season 3: RO16 results & RO8 bracket13Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge2
StarCraft 2
General
BGE Stara Zagora 2026 announced SC: Evo Complete - Ranked Ladder OPEN ALPHA When will we find out if there are more tournament Weekly Cups (Nov 17-23): Solar, MaxPax, Clem win Weekly Cups (Nov 10-16): Reynor, Solar lead Zerg surge
Tourneys
RSL Revival: Season 3 Constellation Cup - Main Event - Stellar Fest Tenacious Turtle Tussle [Alpha Pro Series] Nice vs Cure $5,000+ WardiTV 2025 Championship
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 501 Price of Progress Mutation # 500 Fright night Mutation # 499 Chilling Adaptation Mutation # 498 Wheel of Misfortune|Cradle of Death
Brood War
General
Which season is the best in ASL? BW General Discussion A cwal.gg Extension - Easily keep track of anyone soO on: FanTaSy's Potential Return to StarCraft BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[Megathread] Daily Proleagues [BSL21] RO16 Group B - Sunday 21:00 CET [BSL21] RO16 Group C - Saturday 21:00 CET Small VOD Thread 2.0
Strategy
Game Theory for Starcraft How to stay on top of macro? Current Meta PvZ map balance
Other Games
General Games
Nintendo Switch Thread The Perfect Game Stormgate/Frost Giant Megathread Beyond All Reason Should offensive tower rushing be viable in RTS games?
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Mafia Game Mode Feedback/Ideas TL Mafia Community Thread
Community
General
The Big Programming Thread Russo-Ukrainian War Thread US Politics Mega-thread Things Aren’t Peaceful in Palestine Artificial Intelligence Thread
Fan Clubs
White-Ra Fan Club
Media & Entertainment
[Manga] One Piece Movie Discussion! Anime Discussion Thread
Sports
2024 - 2026 Football Thread Formula 1 Discussion NBA General Discussion MLB/Baseball 2023 TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
Where to ask questions and add stream? The Automated Ban List
Blogs
Esports Earnings: Bigger Pri…
TrAiDoS
Thanks for the RSL
Hildegard
Saturation point
Uldridge
DnB/metal remix FFO Mick Go…
ImbaTosS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1794 users

C++ IDE

Blogs > Osmoses
Post a Reply
Osmoses
Profile Blog Joined October 2008
Sweden5302 Posts
September 15 2009 16:21 GMT
#1
So, I've spent most of the last couple of years working mostly with Java and webdesign languages like actionscript and php, but now I've decided that I wanna go back to working with C++, which was one of the first languages I learned. I'm getting some new, up to date books and I'm gonna re-learn everything about it, as well as go deeper than I ever did before, into directX and graphic-heavy game programming.

However, I also need a compiler, or IDE, whatever the hell the difference is. Atm all I got is Microsoft Visual Studio 2005. Maybe it's the shit, I don't know, because back when I was doing C++ I was using Borland builder, where I would make a file with a main function and just run into console. But NOW, I go into Microsoft Visual Studio and it needs me to make a friggin project for something as simple as printing "hello world"! I spent an hour just figuring out how to compile a cout!

And when I wanna start a new project, I get a list of like fifteen templates, such as console application, win32 application, MFC, etc and I have no idea wth I need them for. All I want is a blank cpp file to which I can create my own linkage.

Whatever, I'm ranting, maybe its terrific, maybe I just gotta learn the distinctions between the templates. I dunno.

But before I go through all that trouble, I'm wondering if someone wouldn't mind telling me of another compiler. Anyone been using c++ professionally for the past 2-3 years that have some in-depth input?

Also, some tips on good books would be awe-sum. I've been programming for well over a decade, started with c++ about 7-8 years ago, been doing high level languages since then. Would really appreciate some help.

*
Excuse me hun, but what is your name? Vivian? I woke up next to you naked and, uh, did we, um?
Eti307
Profile Blog Joined March 2004
Canada3442 Posts
September 15 2009 16:50 GMT
#2
Hum you can just start an empty project and not use any of the templates. Then add new .cpp and .h files from there

Visual Studio 2008 + Visual Assist is the perfect IDE for C++ on windows imo. I have absolutely no problem with it.
keV.
Profile Blog Joined February 2009
United States3214 Posts
Last Edited: 2009-09-15 16:52:02
September 15 2009 16:51 GMT
#3
I'm a student who does all serious projects with C++ and Visual Studio..

New Project -> Blank project doesn't work? It will still create a lot of unnecessary project files, but they are easy enough to just delete. I wouldn't use the templates...

Visual Studio is an amazing program once you are comfortable with it. Absolutely essential if you know you are going to have to do some serious debugging.
"brevity is the soul of wit" - William Shakesman
imDerek
Profile Blog Joined August 2007
United States1944 Posts
September 15 2009 17:36 GMT
#4
Use gcc (g++) and a text editor such as emacs
A good C++ book would be "The C++ Programming Language" by Stroustrup, the creator of C++
Least favorite progamers: Leta, Zero, Mind, Shine, free, really <-- newly added
uNiGNoRe
Profile Blog Joined June 2007
Germany1115 Posts
September 15 2009 18:25 GMT
#5
In the past I've used Bloodshed Dev C++ as an IDE for C++ but when I figured out that you can actually use Eclipse not only for Java but for C++ as well, I switched over to Eclipse and I really like it.
Although you usually have to create a projects like in Visual Studio, Eclipse doesn't generate a lot of code or additional files and stuff like that. I always hated it when IDE's do too much for you. But the on the fly syntax error checking is pretty useful and you can use Eclipse with any compiler you want (as far as I know). I'm using it with MinGW (on Windows).
Eclipse itself is also platform independent (written in Java). You can as well unzip it onto an USB device and use it on other PC's or laptops over USB.

If you don't want to use this kind of "heavy" IDE, I'd recommend either Bloodshed Dev C++ (very simple IDE) or just the gcc compiler and an editor with syntax highlighting (i.e. Notepad++ for Windows).

Just my 2 cents.
agorist
Profile Joined July 2009
United States115 Posts
September 15 2009 18:28 GMT
#6
How have you been programming for a decade and not can't differentiate between an IDE and a compiler?

As imDerek states, most linuxy-developers like to use emacs/vi and gcc/g++ (gnu c compiler).

One can also use ajunta(sp?), eclipse, etc as they're more full-featured ides.
Scorch
Profile Blog Joined March 2008
Austria3371 Posts
September 15 2009 18:35 GMT
#7
How about Eclipse? It has plugins for just about every language.
omgbnetsux
Profile Blog Joined April 2004
United States3749 Posts
September 15 2009 18:37 GMT
#8
I think an editor with syntax highlighting with gcc is the way to go. I personally have a Linux server at home just for compiling stuff (easier to keep clean development environments).

As far as books go, C++ Primer Plus is very good.
Varn
Profile Joined December 2008
United States33 Posts
September 15 2009 19:41 GMT
#9
I've tried both Eclipse and Dev-C++, but I personally prefer Code::Blocks. Eclipse and Dev seemed incapable of performing code completion correctly, plus Dev always fucked with my indentation and the tabs were like half the width of the screen. So I switched to Code::Blocks and it hasn't presented any glaring faults as of yet.
Once we did run. How we chased a million stars and touched as only one can.
Strayline
Profile Blog Joined January 2009
United States330 Posts
Last Edited: 2009-09-15 20:03:27
September 15 2009 20:03 GMT
#10
In my opinion there are two ways to go:

1) Use MSVS and find the correct template. I think what you're probably looking for is Win32 Concolse Application. You can then you click Next on the options and make it a "Blank Project" which you will then Add>>New Item>>C++ file. void main() and gogogo.

2) Get gcc. You invoke it from the command line and it couldn't be simpler to "gcc test.cpp" then execute a.out or whatever. Use whatever to edit the files as text (notepad or MSVS if you want). Just save and run the compiler from a dos prompt.
Tyraz
Profile Blog Joined September 2008
New Zealand310 Posts
September 15 2009 23:24 GMT
#11
On September 16 2009 03:35 Scorch wrote:
How about Eclipse? It has plugins for just about every language.

This. I cannot express how much of a hard on i have for Eclipse. It may be big phat and bloated, but when it comes to coding, its just like writing a word document: Just right click on the red underlined code and select how you wanna fix it lol. It just makes everything so epically easy.
100% Pure.
Please log in or register to reply.
Live Events Refresh
Replay Cast
09:00
2025 KFC Monthly #3 - Day 3
CranKy Ducklings153
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
SortOf 169
MindelVK 27
StarCraft: Brood War
Britney 45525
zelot 1538
Horang2 1292
Rain 1063
Larva 477
BeSt 404
Stork 291
firebathero 270
Mini 172
Zeus 142
[ Show more ]
Pusan 127
Last 127
Rush 109
ZerO 108
sorry 99
Hyun 83
Bale 76
Shine 45
Mong 42
Backho 32
Sharp 31
Barracks 10
Noble 10
IntoTheRainbow 7
Dota 2
XcaliburYe981
qojqva376
NeuroSwarm97
League of Legends
JimRising 483
Counter-Strike
byalli6581
PGG 116
oskar106
edward17
Heroes of the Storm
Khaldor200
Other Games
summit1g15043
Happy632
Fuzer 241
Mew2King216
nookyyy 45
ArmadaUGS20
ZerO(Twitch)12
Organizations
Dota 2
PGL Dota 2 - Main Stream491
StarCraft: Brood War
lovetv 10
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 13 non-featured ]
StarCraft 2
• LUISG 40
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• lizZardDota2184
League of Legends
• Lourlo1695
Upcoming Events
WardiTV Korean Royale
1h 17m
ByuN vs Cure
TBD vs NightMare
TBD vs Classic
TBD vs Solar
Zoun vs Creator
OSC
6h 17m
Sparkling Tuna Cup
23h 17m
WardiTV Korean Royale
1d 1h
TBD vs SHIN
TBD vs Reynor
TBD vs herO
Replay Cast
1d 13h
Wardi Open
2 days
Monday Night Weeklies
2 days
StarCraft2.fi
2 days
Replay Cast
2 days
Wardi Open
3 days
[ Show More ]
StarCraft2.fi
3 days
PiGosaur Monday
3 days
Wardi Open
4 days
StarCraft2.fi
4 days
Replay Cast
4 days
The PondCast
4 days
Replay Cast
5 days
Korean StarCraft League
6 days
CranKy Ducklings
6 days
Liquipedia Results

Completed

SOOP Univ League 2025
RSL Revival: Season 3
Eternal Conflict S1

Ongoing

C-Race Season 1
IPSL Winter 2025-26
KCM Race Survival 2025 Season 4
YSL S2
BSL Season 21
CSCL: Masked Kings S3
Slon Tour Season 2
META Madness #9
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2

Upcoming

BSL 21 Non-Korean Championship
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
RSL Offline Finals
WardiTV 2025
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
BLAST Bounty Winter 2026: Closed Qualifier
eXTREMESLAND 2025
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Disclosure: This page contains affiliate marketing links that support TLnet.

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.