|
You last visited: Today at 07:07
Advertisement
New To Visual Studio2008 Profesional
Discussion on New To Visual Studio2008 Profesional within the .NET Languages forum part of the Coders Den category.
03/22/2009, 17:00
|
#16
|
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
|
wtf XD lol ya definately the tutorials had ***** lol
|
|
|
03/23/2009, 11:24
|
#17
|
elite*gold: 0
Join Date: Jul 2007
Posts: 120
Received Thanks: 71
|
just download a free ebook on C++
select the text under this to see what i mean
WAREZ
|
|
|
03/23/2009, 23:18
|
#18
|
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
|
u mean like a torrent or something on it
|
|
|
03/24/2009, 15:18
|
#19
|
elite*gold: 105
Join Date: Mar 2007
Posts: 5,073
Received Thanks: 558
|
Man I see that you will never learn coding very well. You have to do some research by your own...
|
|
|
03/24/2009, 23:32
|
#20
|
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
|
well i am only 13 lmao
|
|
|
03/25/2009, 12:08
|
#21
|
elite*gold: 20
Join Date: Sep 2006
Posts: 1,100
Received Thanks: 184
|
Quote:
Originally Posted by Alleyn
well i am only 13 lmao
|
So what?
That shouldn't prevent you from learning C++, in fact the sooner you start the better, yet you'll have to keep yourself motivated because learning C++ is a long process like learning a foreign language.
If you really want to learn a programming language I'd also recommand you to buy a book on the topic, take a look at the programming for kids books, I'm pretty sure they got a book about C++.
|
|
|
03/26/2009, 01:05
|
#22
|
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
|
eh i found some dumb *** tutorial called hello world
its stupid as *** lol
|
|
|
03/26/2009, 12:34
|
#23
|
elite*gold: 20
Join Date: Sep 2006
Posts: 1,100
Received Thanks: 184
|
PHP Code:
#include <iostream>
using namespace std;
int main(int argc, char* argv[]){ cout<<"Hello World"; }
every traditional programming tutorial starts off with Hello World :-)
It's meant to show you the complexity of a programming language and you should try to understand the hole Hello World programm
PHP Code:
#include <iostream>
this statement includes the iostream library to provide some functions like cout.
PHP Code:
using namespace std;
this statement allows you to use members of the std name space without typen std:: before them, the cout function belongs to the std namespace
PHP Code:
int main(int argc, char* argv[])
This is the main function header, all C++ programms start here, as you can see this function takes some arguements, int argc is the count of arguements and char* argv[] is the array that contains the arguments, argv[0] is always the name of your executable.
PHP Code:
{ cout<<"Hello World"; }
this is the body of the main function, it's enclosed by '{' and '}', all function bodys are enclosed by these two symbols, the line cout<<"Hello World"; prints a string in your console, << is an operator used by cout, all iostream functions use this operator to show where the stream goes to.
|
|
|
03/27/2009, 02:24
|
#24
|
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
|
Quote:
Originally Posted by Bot_interesierter
PHP Code:
#include <iostream>
using namespace std;
int main(int argc, char* argv[]){
cout<<"Hello World";
}
every traditional programming tutorial starts off with Hello World :-)
It's meant to show you the complexity of a programming language and you should try to understand the hole Hello World programm
PHP Code:
#include <iostream>
this statement includes the iostream library to provide some functions like cout.
PHP Code:
using namespace std;
this statement allows you to use members of the std name space without typen std:: before them, the cout function belongs to the std namespace
PHP Code:
int main(int argc, char* argv[])
This is the main function header, all C++ programms start here, as you can see this function takes some arguements, int argc is the count of arguements and char* argv[] is the array that contains the arguments, argv[0] is always the name of your executable.
PHP Code:
{
cout<<"Hello World";
}
this is the body of the main function, it's enclosed by '{' and '}', all function bodys are enclosed by these two symbols, the line cout<<"Hello World"; prints a string in your console, << is an operator used by cout, all iostream functions use this operator to show where the stream goes to.
|
see that tutorial
doesnt show much
any of u have msn
so u could teach me over that ^^
really appreciate it
|
|
|
03/27/2009, 12:14
|
#25
|
elite*gold: 105
Join Date: Mar 2007
Posts: 5,073
Received Thanks: 558
|
Man nobody wants to be your personal teacher. Buy a book and learn it >.<
|
|
|
03/28/2009, 12:34
|
#26
|
elite*gold: 20
Join Date: Sep 2006
Posts: 1,100
Received Thanks: 184
|
I'd like to be your personal C++ Teacher, I take 50 bucks an hour :-)
|
|
|
03/28/2009, 13:02
|
#27
|
elite*gold: 105
Join Date: Mar 2007
Posts: 5,073
Received Thanks: 558
|
Quote:
Originally Posted by Bot_interesierter
I'd like to be your personal C++ Teacher, I take 50 bucks an hour :-)
|
Neet!
|
|
|
03/28/2009, 13:06
|
#28
|
elite*gold: 15
Join Date: Nov 2005
Posts: 13,021
Received Thanks: 5,324
|
On scribd.com are a looooot of tutorials. Take a look and gtfo
|
|
|
03/29/2009, 17:55
|
#29
|
elite*gold: 81
Join Date: Jul 2005
Posts: 1,921
Received Thanks: 2,239
|
Quote:
Originally Posted by Bot_interesierter
I'd like to be your personal C++ Teacher, I take 50 bucks an hour :-)
|
I'll hire you.
|
|
|
03/30/2009, 16:02
|
#30
|
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
|
XD lool jeez
people so harsh these days =P lol
XD well thx for tha stuff ^^
|
|
|
 |
|
Similar Threads
|
Visual c++
07/20/2010 - Kal Online - 9 Replies
Someone can tell me where i find the cmd windows on Visual c++? and i think i downloaded the wrong version cuz have only 5 MB size. Sry For Bad English
|
Visual C++ (C++), Visual Basic, oder AutoIT?
06/24/2010 - .NET Languages - 11 Replies
Hallo Zusammen
Ich würde gerne mit dem Programmieren anfangen.
Meine Vorstellungen:
Es müsste möglich sein, eigene Programme zu schreiben wie z. B. MSN, Emule oder ähnliches. Natürlich nie in dieser Grösse nur als Beispiel.
Als weiteres sollte mit der gleichen Programmiersprache auch die Möglichkeit bestehen einen WoW Bot zu schreiben. Habe gehört die meisten Bots sind in Auto IT geschrieben. Gibt es unterschiede wegen des Warden schutzes oder kommt es nicht darauf an?
|
Self Cracked SV Is Infected? Need Profesional Help
02/21/2007 - Conquer Online 2 - 5 Replies
AntiVir 7.3.1.37 02.20.2007 no virus found
Authentium 4.93.8 02.19.2007 no virus found
Avast 4.7.936.0 02.20.2007 no virus found
AVG 386 02.20.2007 no virus found
BitDefender 7.2 02.21.2007 no virus found
CAT-QuickHeal 9.00 02.20.2007 (Suspicious ) - DNAScan
ClamAV devel-20060426 02.20.2007 no virus found
DrWeb 4.33 02.20.2007 no virus found
eSafe 7.0.14.0 02.20.2007 Win32.Polipos.sus
eTrust-Vet 30.4.3414 02.20.2007 no virus found
|
All times are GMT +1. The time now is 07:08.
|
|