PDA

View Full Version : gurus


-=DoW=- ^Johnson^
April 4th, 2006, 21:20
hey all you coding guru's out there question for ya. well i am attempting to learn c++ ive got vb studio 6 enterprise[if you want it let me know its legit too ;)] and i am lookin for either a good tut or someone who can show me how to flippin get my hello world program to come up lol

Warcuddle
April 5th, 2006, 03:34
hey all you coding guru's out there question for ya. well i am attempting to learn c++ ive got vb studio 6 enterprise[if you want it let me know its legit too ;)] and i am lookin for either a good tut or someone who can show me how to flippin get my hello world program to come up lol

Well i never tried programming C++ but it is a hard language...
The things u can do with it are very cool.
It is also a first step to other languages like Microcontrollers i think!!

Goodluck

CrazySnyper
April 5th, 2006, 15:00
I know C, which I think is sort of like C++

A quick hello world program in C

#include <stdio.h>

main()
{
printf("\nHello World\n");
}


I think that should work.

A Great C Tutorial (http://cplus.about.com/od/beginnerctutoria1/l/blctut.htm)

CrazySnyper
April 5th, 2006, 15:03
Ahhh, just found a C++ Tutorial (http://cplus.about.com/od/beginnerctutorial/l/blcplustut.htm) from the same place.

-=DoW=- ^Johnson^
April 5th, 2006, 18:26
a hello world one in c++ is somethin like

#include <iostream>
using namespace std;
int main()
{
cout <<"hello world";
return 0;
}

CrazySnyper
April 5th, 2006, 19:19
Lesson 1: Get Linux (Red Hat is nice, SuSE is nice but kind of wierd, Ubuntu is supposed to be good but I was put off by all of the world peace crap, and once you are good with Linux Slackware is totally awesome)

Lesson 2: Learn C

-=DoW=- ^Johnson^
April 5th, 2006, 20:47
lol but i wanna learn c++ first :P