02.01 - The C Language
#1 GDNet+ - Reputation: 176
Posted 08 April 2001 - 05:53 PM
#2 Members - Reputation: 122
Posted 11 April 2001 - 08:22 AM
Also i was wondering what the average saleries of those involved in the production of a game?
#3 Anonymous Poster_Anonymous Poster_* Guests - Reputation:
Posted 16 April 2001 - 10:21 AM
Any of you with no experience in C/C++ or even in programming, is highly recommended to visit Gordon Dodrill''s site and have a look at his Coronado Enterprise tutorials serie:
Coronado Enterprise homepage
#4 Members - Reputation: 122
Posted 16 April 2001 - 10:21 AM
Any of you with no experience in C/C++ or even in programming, is highly recommended to visit Gordon Dodrill's site and have a look at his Coronado Enterprise tutorials serie:
Coronado Enterprise homepage
Btw, I'm sorry for the double post. If anybody knows how to delete an anonymous post, just do it, thx.
Edited by - Bifff on April 18, 2001 6:28:54 AM
#6 Members - Reputation: 122
Posted 30 April 2001 - 07:55 PM
http://www.psyon.org/archive/e-books/programming/c/index.shtml
Again, moderators: delete this if it''s illegal...(which it probably is)
*** Hi! I''''m a signature virus. Copy me into your signature to help me spread! ***
#7 Members - Reputation: 122
Posted 19 May 2001 - 08:43 AM
Edited by - Xavior on May 20, 2001 2:24:56 AM
#8 Members - Reputation: 122
Posted 22 May 2001 - 09:25 AM
I am a newbie at programming. I followed the link to Informit on the web and found a complete book of Sams - Teach yourself C in 24 hours. I am about halfway in the book. I have also downloaded a few tutorials in C programming to learn how to program in C.
Every tutorial begins with the classical "Hello World" program, that I think you all are familiar with. A program that writes Hello World on the screen. But hey... Why on earth would anyone want to do that? My point is: Why does all tutorials (at least the ones I found) teach you how to do things in DOS? I don´t want to do ANYTHING in DOS! I my opinion, DOS is dead... (Hope I don´t offend anyone...) I just love Windows, whith all those nice OK and Cancel buttons... I want to write my programs in that platform.
I hope you can help me out here. Is there any reason for me att all to continue learning from this book and those tutorials? None of them covers anything about Windows. Sure, I have to learn to crawl before I start to walk, but am I crawling the right direction??? I just don´t want to waste my time... Perhaps I am a little impatient, but hey: That´s just how i am :-)
And secondly, if there isn´t, what do you guys think that I should try with, so I can learn C language in the Windows environment instead of the boring DOS?
The source codes provided that I have seen from some of this forums pages does not contain anything that I have learned from the book or tutorials. Well, maybe a few functions and stuff, but almost everything looks completely unfamiliar to me...
So please friends. Write a few lines of encouragement to me... I really want to learn myself to make applications and games, but I´m feeling lost here.
This is my first post in this forum (except for the Enrolment Roster). Sorry if I write to long. I´ve always had a hard time to get to the point :-)
Hope you can help me. I would appreciate it very much.
Anakha
#9 Members - Reputation: 122
Posted 22 May 2001 - 03:47 PM
I just enrolled too. Andre La''Mothe has an excellent beginning Windows Programming tutorial in his book _Tricks of the Windows Game Programming Gurus_. It basically shows you only what you need to get a full screen "console" running in windows so you can blit pixels and do page flipping, double buffering and all that other fun graphics stuff :-)
#10 Members - Reputation: 122
Posted 22 May 2001 - 07:30 PM
Perhaps I will go for the book then. I think books are better than tutorials to give a good foundation to build on. Tutorials seems to be good to refresh things and get other things going when you have a good understanding in the first place.
#11 Members - Reputation: 122
Posted 23 May 2001 - 03:34 AM
quote:
Every tutorial begins with the classical "Hello World" program, that I think you all are familiar with. A program that writes Hello World on the screen. But hey... Why on earth would anyone want to do that? My point is: Why does all tutorials (at least the ones I found) teach you how to do things in DOS? I don´t want to do ANYTHING in DOS! I my opinion, DOS is dead... (Hope I don´t offend anyone...) I just love Windows, whith all those nice OK and Cancel buttons... I want to write my programs in that platform.
I hope you can help me out here. Is there any reason for me att all to continue learning from this book and those tutorials? None of them covers anything about Windows. Sure, I have to learn to crawl before I start to walk, but am I crawling the right direction??? I just don´t want to waste my time... Perhaps I am a little impatient, but hey: That´s just how i am :-)
I can understand why you are impatient! BUT... stick with learning C or C++ before trying to do anything significant with Windows. If you don''t master C or C++ first, you will just be setting yourself up for discouragement and failure.
By the way, C is a programming language and Windows is an operating system (although I agree that there is a little more to it than that). Although you may think that you are programming in DOS, you could be doing almost the exact same thing in UNIX or some other OS.
C (or C++) is an essential foundation for everything that you do in Windows. Believe me (and I speak from many years of experience) you will never regret getting a good foundation in C before tackling Windows code.
#12 Members - Reputation: 122
Posted 24 May 2001 - 10:41 AM
That´s excatly what I needed! I follow the books and the tutorials, and I think this C stuff is really cool! Now that I know that I eventually will learn more, and that this knowledge will be of great help when I start to learn C in Windows, it feels better to start from the beginning. I will get there someday... I just needed to know that this knowledge is of importance when all of the samples I have seen from Windows programs seem so different from the ones in the book.
But there seems to be so much to learn... All tutorials and books are focusing on different topics. How will I know when I have learned enough to take the step over to the "Windows stuff"?
Will this book I mentioned before be enough or should I practise more? My problem is that I have serious difficulties to see what all keyword, functions, pointers and so on applies to in "the real world" I still feel that the practises and examples are stuff that I probably never will have use of in my own programs. But probably I´m wrong... Thanks again!
Anakha
#13 Members - Reputation: 122
Posted 30 June 2001 - 09:56 AM
About programming in Windows. Programming in Windows requires that you know the Win32 API(Application Programming Interface) which requires that you know how to do things in C or C++ already. You must know how to do things in C before you move on and use things(APIs) that change what GUI(Graphical User Interface - like Windows Explorer or a DOS Prompt) you are programing in.
Also if you start learning Windows programming you will be skipping neccessary skills needed to make useful applications in Windows, you wont always know why something happens, and you will be overwhelmed(maybe). Depending on your pace of learning C(and practice!!! - MAKE programs too!) you could start learning the Win32 API in a month or so.
"Ogun''s Laughter Is No Joke!!!" - Ogun Kills On The Right, A Nigerian Poem.
#14 Members - Reputation: 122
Posted 08 September 2001 - 08:15 PM
Actually, I believe that it''s because variables that start with certain letters are by default integer. This way, you didn''t have to bother with declaring them. That''s why you would see ppl use kandy instead of candy for an integer name, etc.
This sentence is false.
#15 Members - Reputation: 122
Posted 11 September 2001 - 07:11 AM
#16 Anonymous Poster_Anonymous Poster_* Guests - Reputation:
Posted 13 November 2001 - 01:43 PM
#18 Anonymous Poster_Anonymous Poster_* Guests - Reputation:
Posted 19 March 2002 - 04:21 PM
#20 Members - Reputation: 125
Posted 19 April 2002 - 06:07 AM
quote:
Original post by Anakha
I hope you can help me out here. Is there any reason for me att all to continue learning from this book and those tutorials? None of them covers anything about Windows. Sure, I have to learn to crawl before I start to walk, but am I crawling the right direction??? I just don´t want to waste my time... Perhaps I am a little impatient, but hey: That´s just how i am :-)
And secondly, if there isn´t, what do you guys think that I should try with, so I can learn C language in the Windows environment instead of the boring DOS?
Well, the answer is simple: You need to crawl before walking. The ''Hello World'' program is the most direct and simple way to begin using the language. When you design a game, you have to be sure that most of the logic works before starting to work seriously on the Interface. Right now, I´m doing an Uno card game for Java, and for now it´s almost completely done in the console (or DOS), and I´ve been doing both parts: Nice graphics and logic, but if the game doesn´t work right without graphics, all your work will be worth crap.
Just my two cents...






