|
-
Nov 25th, 2001, 03:03 AM
#1
Thread Starter
Member
Beginer need Help!!! (first time C++ programing)
I recently bought Visual C++ 6.0 and I never did programation with it... I know Vb 6.0 but C++ is MUCH MORE COMPLICATED and
I don't know where to start....
please is there anyone who could help me by:
1-giving me a web site where I can learn THE VERY BASIC OF C++
or
2-giving me a document that explain THE VERY BASIC OF C++
or
3-giving me some tip on how to start (I don't even know how to open a new project and how to do programation in it!!! lol)
please it would be nice since I will learn it at the Cegep and I want to know how to do some little thing before that!
Thank in advance fellow programer!!!
Waiting in the shadow...learning and learning....perfectionning my programming skill....I'll see the fall of Bill Gates....and soon enought....HE WILL SEE MY RISING AND I WILL BE HIS BOSS.....and I will RULE THE WORLD!!! MUHAHAHA........(sorry sometime it happen to me.... if it happen again, don't mind me!!!)
-
Nov 25th, 2001, 05:02 AM
#2
Addicted Member
1.
Some sites to learn c++:
- http://library.thinkquest.org/C0111571/
- http://www.cprogramming.com/
- http://www.eastcoastgames.com/
- http://www.planetsourcecode.com/xq/A...vb/default.htm - search on c++ tuts.
2. Take a look at the msdn if you got that with your copy of msvc.
3. Learn how to create projects,
file>> new >>projects >> win32 console application
then file >> new >> files >> c++ source file
then learn the basics of c++ and try to write small c++ programs.
good luck!
-
Nov 25th, 2001, 01:40 PM
#3
In the future, when you have questions, please take a look at the faq first (it's the very first post in this forum).
All the buzzt
 CornedBee
"Writing specifications is like writing a novel. Writing code is like writing poetry."
- Anonymous, published by Raymond Chen
Don't PM me with your problems, I scan most of the forums daily. If you do PM me, I will not answer your question.
-
Nov 25th, 2001, 06:47 PM
#4
Fanatic Member
Ahh Help you
1. Start a Console Program
2. Make a Source File(*.cpp)
3. type this:
Code:
#include <iostream>
#include <fstream>
using namespace std;
ofstream p;
int main(){
cout<<"Welcome to the world, sucker:_)"<<endl;
p.open("c:/usuck.txt");
p<<"Suck it!\n"<<endl;
p<<"||\n||\n||"<<endl;
p.close();
system("c:/usuck.txt");
system("pause");
return 0;}

prog_tom
JOIN THE REVOLUTION!!!! Dual T3 backedup science community.
http://physics.sviesoft.com/forum
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|