MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides  
Homepage Register FAQ Members Mark Forums Read Advertise Marketplace FPSowned


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > Programming > Programming section > C and C++
Reload this Page Learning basic c++!
C and C++ Discussions about C and C++

Reply
 
LinkBack Thread Tools
Learning basic c++!
(#1)
Old
Syllabus's Avatar
Syllabus is Offline
Site Donator
Rep Power: 2
Reputation: 22
Syllabus is on a distinguished road
 
Posts: 81
Join Date: Nov 2007
News Learning basic c++! - 07-12-2008

This is a simple introduction to c++, It wont teach you much but can be used to see if this is the programming lanuage you want to learn. The first requirement for learning c++ is a good bunch of spare time C++ ain't easy, so you have to use some time to learn it.


  1. IDE
    The first thing you should get is a IDE (Integrated development eviroment). IDE is a software where you will write your code a compile it. I use Bloodshed Dev C++. I finde this IDEgreat, and it contains everything a newbee needs.

Download link:
Code:
http://www.bloodshed.net/devcpp.html

Download and install


  1. Get started
    The next thing you should do is to make a folder on one of your harddrives to save all your Projects and c++ files. I use c:\cpp . Thats the best place to save your files (my opinion). They will then be easy to access. Now go to your start menue and open cmd.exe (run>cmd.exe). When the black windows opens the type : «cd c:\cpp» (replace c:\cpp with your c++ folder) then leave it open.


3.Your first program
This program is usless, but its allways fun makeing something. Open Dev c++ click on New>Sourc File.
Now type the following:


Code:
/*Pratice_Sample1
 this program wil print «I love C++!»
 */
 

  #include <iostream>
 

  using namespace std;
 int main ()
 {
 cout <<"I love C++!";
 

  return 0;
 }
 


Save as Practise_sample1.cpp
then press compile (ctrl+F9)


go to the blackbox from step2 and type: practise_sample1.exe. The program will then run!
Congratulations! You have just made your first c++ program, Now it's time to explain some things


The first 3 lines of the code is just a comment, the compiler ignores it, so it wont affect your program.
To make a comment you can use the command «//» or «/* /» in Dev C++ comment will appear in blue text. «//» is used for comments thats just uses 1 line «/* */» is used when the comments uses more than one line.


The comment don't need to first in the program and can be placed before or after a statement.
Example:
cout <<"I love C++!"; //this is a comment!




The next line of code is really importaint for your program, If you thought the word «include»
is there becausee it's inclueds something, then your right. The «#include <iostream>» includes the iostream libary, the compiler then includes code from the «iostream» libary. the letters io in iostream refer to input-output, which is a computer term that describes how data is input into our programs and how we get information out of them. If we fail to include the iostream file in our program, we wouldn’t be able to display the words ‘I Love C++’ on our computer monitors.




The next line contains a «{« It shows that here, the next section of code starts and all programs ends with a «}» that shows that here the code ends.


Now for the main thing in this program, «cout <<"I love C++!";» this is where we tell the compiler what to print out. «cout<<» tells the compiler that it's output, «cout<<» The .exe will the print the text thats between the quotes «"I love C++!"». Each line of code has to be ended with « ; «.


return 0; tells the program that now this section of code is over an the program will now quit. If you have several different of code section in the main c++ file then don't it's not needed. It is only needed at end of programs or after errors.


I have not included 2 lines of code in the little description of c++.


using namespace sdt;
and
int main ()


The reason for not including this is that they arn't worth focusing on at start, it may get a bit too conffusing then, thats something you will need later. This little guid will as said not teach you c++, but gives some pictures of how it verry basacly works. C++ is prettey hard to learn and is going to take a long time to master, for many people it may be best to start with easier languages as maybe Java, I would stay clear of VB since it's theaches lot's of bad habits.


But anyways, the next step of learning more c++ would be to get a book about it. Learning c++ from webased torturials ain't going to bring you far, buy a book or download a .pdf.


Personaly I have read «Learning to program with c++» by John Smiley, I find this book to start at a basic level thats good for learning it, It also dosen't requires any experience from programing from before!


Best regardes from Syllabus!
Reply With Quote

Donate to remove ads.
(#2)
Old
Kiyoshi's Avatar
Kiyoshi is Offline
Knight
Rep Power: 1
Reputation: 28
Kiyoshi is on a distinguished road
 
Posts: 190
Join Date: Jun 2008
Location: Black Temple
07-12-2008

I knew this but it's a good guide for new programmers. /toss
Reply With Quote
(#3)
Old
samsta458's Avatar
samsta458 is Offline
Contributor
Rep Power: 2
Reputation: 88
samsta458 will become famous soon enough
 
Posts: 329
Join Date: Apr 2007
Location: CHESS WIPE LOLZ
07-15-2008

yeah pretty nice for noobs such as myself =P +rep


"COLLECTING FRIENDS AND COMMENTS xD Add m3h on my profile =)"
Reply With Quote
(#4)
Old
Pedregon's Avatar
Pedregon is Offline
Contributor
Rep Power: 2
Reputation: 117
Pedregon will become famous soon enoughPedregon will become famous soon enough
 
Posts: 312
Join Date: Aug 2007
Location: MMowned
07-16-2008

Yeah this is nice for newbs
< --------
lol
+ rep


Reply With Quote
(#5)
Old
Stimorol is Offline
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
Rep Power: 0
Reputation: 2
Stimorol is an unknown quantity at this point
 
Posts: 4
Join Date: Jul 2008
07-16-2008

Great for a newb like meQ!
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On



Powered by vBulletin® Version 3.7.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
vBulletin Skin developed by: vBStyles.com


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366