Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > .NET Languages
You last visited: Today at 00:44

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



New To Visual Studio2008 Profesional

Discussion on New To Visual Studio2008 Profesional within the .NET Languages forum part of the Coders Den category.

Reply
 
Old 03/22/2009, 17:00   #16
 
Alleyn's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
wtf XD lol ya definately the tutorials had ***** lol
Alleyn is offline  
Old 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
blackmorpheus is offline  
Old 03/23/2009, 23:18   #18
 
Alleyn's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
u mean like a torrent or something on it
Alleyn is offline  
Old 03/24/2009, 15:18   #19
 
BlackFog's Avatar
 
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...
BlackFog is offline  
Old 03/24/2009, 23:32   #20
 
Alleyn's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
well i am only 13 lmao
Alleyn is offline  
Old 03/25/2009, 12:08   #21
 
elite*gold: 20
Join Date: Sep 2006
Posts: 1,100
Received Thanks: 184
Quote:
Originally Posted by Alleyn View Post
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++.
Bot_interesierter is offline  
Old 03/26/2009, 01:05   #22
 
Alleyn's Avatar
 
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
Alleyn is offline  
Old 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 argccharargv[]){
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 argccharargv[]) 
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.
Bot_interesierter is offline  
Old 03/27/2009, 02:24   #24
 
Alleyn's Avatar
 
elite*gold: 0
Join Date: Sep 2008
Posts: 418
Received Thanks: 161
Quote:
Originally Posted by Bot_interesierter View Post
PHP Code:
#include <iostream>

using namespace std;

int main(int argccharargv[]){
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 argccharargv[]) 
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
Alleyn is offline  
Old 03/27/2009, 12:14   #25
 
BlackFog's Avatar
 
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 >.<
BlackFog is offline  
Old 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 :-)
Bot_interesierter is offline  
Old 03/28/2009, 13:02   #27
 
BlackFog's Avatar
 
elite*gold: 105
Join Date: Mar 2007
Posts: 5,073
Received Thanks: 558
Quote:
Originally Posted by Bot_interesierter View Post
I'd like to be your personal C++ Teacher, I take 50 bucks an hour :-)
Neet!
BlackFog is offline  
Old 03/28/2009, 13:06   #28

 
Adroxxx's Avatar
 
elite*gold: 15
Join Date: Nov 2005
Posts: 13,021
Received Thanks: 5,323


On scribd.com are a looooot of tutorials. Take a look and gtfo
Adroxxx is offline  
Old 03/29/2009, 17:55   #29
 
Atheuz's Avatar
 
elite*gold: 81
Join Date: Jul 2005
Posts: 1,921
Received Thanks: 2,239
Quote:
Originally Posted by Bot_interesierter View Post
I'd like to be your personal C++ Teacher, I take 50 bucks an hour :-)
I'll hire you.
Atheuz is offline  
Old 03/30/2009, 16:02   #30
 
Alleyn's Avatar
 
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 ^^
Alleyn is offline  
Reply


Similar Threads 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 &#40;Suspicious &#41; - 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 +2. The time now is 00:44.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.