Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
C++ code question there will be points awarded ?
hi
i was reading a book and it had a portion of C++ code in it
i want to type it in and see what happens but i know nothing about programming or anything of that sort
any way i know there are things that let you type in HTML code and get cutsey graphics and such how would i do it with C++
any good sites?
ok ok fine guys you do it for me
i will email the code to whoever its really short and its just a little graphics thing (it was supposed to be a love note )
2 Answers
- 1 decade agoFavorite Answer
C++ code has to be compiled into a program for it to run.
If you don't currently have any programming experience, I would recommend downloading Microsoft's Visual C++ Express (it's free!):
http://www.microsoft.com/express/vc/
This is an IDE (Integrated Development Environment). What that means is, all the pieces you need to build a C++ program are built in. You'll have a code editor where you can type (or copy and paste) your code. Once you're done, there will be a "compile" button, and if there are any problems with your code, it will also show you and help you (to an extent) with your errors.
After installing, I'd start with a "Hello World!" program just to make sure Visual C++ is working, then try the code sample you have.
Good luck!
- 1 decade ago
C++ is serious programming. No joking around, that's what your operating system is built with. It has a vicious learning curve, and is a huge language. It is not designed to be accessible like HTML, it is the equivalent of building your own house from the ground up, not a lick of paint and some nice curtains.
If that's what you want to get into, start with pure C (90), and then add the plusses.