![]() |
IOBit Software
|
|
|
||||||
| Programming Place to discuss programming including HTML, Java, C++, MySQL and others. |
![]() |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
This has become extremely frustrating...
I'm looking for a compiler, a debugger and a text editor to be able to start learning c++. First off, I can't find all 3 individually, and when I find something that might work, the zip file contains like 20 .exe files so I don't wanna take the risk of unzipping it in my pc. Second of all, to learn html all it takes is a simple notepad .txt file, and bam! This c++ business is absurd. Why isn't there a website with all the needed tools to download and start programming? I've been to jupiter and back looking for the tools but I CAN NOT FIND A SINGLE PIECE OF SOFTWARE THAT WILL HELP. God so frustrating... Third of all, do I just have to get Visual c++ 2010 to learn this piece of crap language? I mean, is c++ some hidden secret that only a few people will ever get to know because they all have visual c++ 2010 or what? I'm sorry but I'm extremely frustrated. Everyone taunts this language as one of the greatest things to happen since sex, but the internet has absolutely not one website where you can go and download all the needed tools and get started. WHYYYYYYYYYYYYYYYYYYYYYYYYYYYYY?!?!?! So...I'm wondering if there is anyone, anyone at all, that can possibly please help me because I swear to you I'VE BEEN SEARCHING BUT I CAN'T FIND THE TOOLS!!! that's all I need...the tools to get started. Thank you! |
| Sponsored links |
|
|
|
#2
|
|||
|
|||
|
Quote:
So yeah, if it costs money, that's not the issue. I just need someone to say "get this." |
|
#3
|
||||
|
||||
|
Quote:
You can get a free (express) version for educational purposes at this link. Although, if you want to write production/commercial applications, you will need to purchase a full version. Quote:
Quote:
![]() Good luck!
__________________
A+, Project+ Certified Network Engineering Grad 5 years Sys Admin exp. 11 years web dev exp. |
|
#4
|
|||
|
|||
|
Another option is to use the g++ compiler in linux.
You can download VirtualBox for free to virtualize Ubuntu, then you download an Ubuntu iso for free. Getting Ubuntu into VirtualBox is pretty easy. Just click the <new> button in the upper left hand corner of the VirtualBox window, then the wizard will guide you through the steps. Once you boot into Ubuntu, be sure to install the addons to get additional nifty features, like fullscreen (gasp!). To do this, go to "devices" ->"install vbox addons" on the vBox toolbar of your Ubuntu window. Or you can press "Host+D", which is generally "right ctrl+D". To install g++, open a command line, then type "sudo apt-get install g++". to use g++ to compile a file called test.cpp, type "g++ test.cpp". If you want to name the resulting application something other than "a.out", like "smiley", type "g++ test.cpp -o smiley". |
|
#5
|
||||
|
||||
|
I had the same problem. I finally got GNU GCC for Windows. It's available free from http://sourceforge.net/projects/gcw/
It is supposed to work with Visual C++ syntax, if you go that route. I tried Visual stuff, but it was too complicated for me, as I'm used to command prompts and such. It may likely be the opposite for you. To edit, I usually just use Windows Notepad. To compile, use the command prompt to run the gcc. I sometimes use other editors, IDEs, that replace notepad, adding extra features and integrating with gcc for faster compiling and debugging without the command prompt. I use minGW to handle makefiles because cygwin was too much. It's supposed to have its own compiler, but I use it with the one I had already. They seem to be more complicated to download and put together.
__________________
I.think(code); I.eat(code.spaghetti); |
| Sponsored links |
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| hi ..I'm here to learn all I can | rocketgirl | Majorgeeks Welcome Center | 9 | 10-24-09 10:47 |
| I want to learn C/C+.. but where. | w0ts0n | Programming | 2 | 11-11-07 22:12 |
| Hi Everyone Im here to Learn | Possum | Majorgeeks Welcome Center | 6 | 06-14-07 05:12 |
| Here to learn. | rffoeg | Majorgeeks Welcome Center | 4 | 05-29-06 21:23 |
| new to OC and i want to learn | wickedtaylor | Overclocking | 25 | 03-24-04 09:30 |