Where can i learn how to code?
#1
Posted 17 August 2006 - 03:51 AM
#2
#3
Posted 17 August 2006 - 03:01 PM
And the wiki of devmaster.net sucks it tells you almost nothing at least for me it does, it only tells you how to get stared rather than teaching you code from the hello world up to well all htt acomplicated stuff

#5
Posted 17 August 2006 - 06:09 PM

#6
Posted 17 August 2006 - 07:26 PM
You could always put stubs into the wiki of the areas you think we need. Then the community can fill in the sections
#7
Posted 18 August 2006 - 12:29 AM

#8
Posted 18 August 2006 - 01:46 AM
#9
Posted 18 August 2006 - 02:52 AM
#10
Posted 18 August 2006 - 03:15 AM
Thsi was from cprogramming.com
Quote
using namespace std;
int main ()
{
cout<<"hey there or whatever it says"\n;
cin.get;
}
Now i dont get it because then on another site it says
Quote
using namespace std;
int main ()
{
cout<<"HI";
return 1;
}
See teh difference..Why is it different? I compiled and ran it but it just flashed on the screen and it didnt stay up, they both did the same thing but are made differently...WTF

#11
Posted 18 August 2006 - 09:58 AM
cin.get; [sic] vs return 1;
maybe thats the reason one disappears and the other stays
cin in the input stream ie it waits for some text to be entered.
return is the way you make a function pass a result.
if you ran both from the command line, the message would stay on the screen both have their uses.
#12
Posted 18 August 2006 - 10:23 AM
ShadowedSoldier said:
Why aren't all chairs identical? They all have the same purpose. How come you can get things in different colours? WTF man!
Ok, seriously now, there is no limit to the number of different ways you can solve a problem. Similarly, there is no limit to the number of ways you can write the same program.
And eddie, that's pretty quote worthy!
#13
Posted 19 August 2006 - 03:39 AM

#14 Guest_Unregistered_*
Posted 19 August 2006 - 06:01 AM
The best solution to your problems is a better ide. If you'd like to stay with the same compiler (minGW) codeblocks is a good choice. Then in the project properties for a console application you could check the box "Pause when excecution ends".
#15
Posted 21 August 2006 - 11:18 PM
As you progress try making some things from scratch(sp?) like a caculator, Rock paper scissors etc.
#16
Posted 27 May 2007 - 12:19 AM
Reedbeta said:
I have a question, if someone wanted to work on creating beginner tutorials for how to use a language (C/C++ in my case) would that be unwanted? I tutor for my college, so I was thinking of creating my own C++ tutorial (Something to try to accumulate all of the knowledge I've gained from all the resources I have looked at personally) and I think it might be nice to be able to have something like that in steps on a wiki like that to point them to. If this is a purpose that the wiki was not meant for and should not fill, then I'll gladly keep such tutorials off this. (If I am given the go-ahead to do this, it wouldn't be like I could just fly off and fill up a full-fledged tutorial, just know that I can over time as time allows.)
EDIT: Just my 2 cents, but it might be nice to send those that the community considers "noobs" (or that profess themselves to be) to something like this. :)
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users











