• 0

Newbie C++ Help


Question

Recommended Posts

  • 0
Ok, I got inspired today to learn a programing language. I want to learn C++ but I am sitting here with no clue on earth on where to start. Can anyone give me links to newbie tutorials and sites? If you can, please state any tips that you have for me, thanks!

errr...Google..seriously VS 2008 Express is free and you can download to learn C++.

  • 0

Hey guys, i need some BIG help.

Its the last 2 weeks of my computing course at college and i am panicking over my program, the tutor isn't allowed to help me with the program all he can do is say whether its wrong or right and what i need to do next etc.

Anyways, i have the program half done at least, but now i am completely stumped, i was wondering if someone here could add me on msn and help me finish the program, i wouldn't bother asking but i suck at it and its not my strong side not to mention its a required credit to pass HNC computing!

  • 0
Hey guys, i need some BIG help.

Its the last 2 weeks of my computing course at college and i am panicking over my program, the tutor isn't allowed to help me with the program all he can do is say whether its wrong or right and what i need to do next etc.

Anyways, i have the program half done at least, but now i am completely stumped, i was wondering if someone here could add me on msn and help me finish the program, i wouldn't bother asking but i suck at it and its not my strong side not to mention its a required credit to pass HNC computing!

If you have a programming problem, post that. Stackoverflow.com is always a great place to ask for help. If you need somebody to actually FINISH your assignment then that's just your own laziness.

  • 0

Hi guys. I'm not in any computer-related programs in University/College but I've decided that I have too much free time, and I'd like to pick up programming as my hobby (don't really have a real one at the moment). I was thinking of starting with C++ to learn the basics of OO programming, and then moving onto C# or Objective-C... My end goal is to either join an indie game development team until I have enough experience to possibly lead my own way down the line or to write iPhone or Android applications... depending on how I feel after experiencing some programming. I'm not a total newb, I took some high school programming courses (in Java and Visual Basic, I also know HTML/CSS from personal experience) so I'm not going into this completely blind.

Any pointers for someone in my position? Tips? Advice that isn't "don't even bother trying?" Thanks in advanced! I have lots of motivation and a strong will so I think I should be able to do it.

  • 0

If you've done Java, you've already had an overdose of OO. I'd actually recommend starting with C. It will give you a much better understanding and appreciation of How Things Really Work, and once you've gotten that, the higher languages will make much more sense.

  • 0
Hi guys. I'm not in any computer-related programs in University/College but I've decided that I have too much free time, and I'd like to pick up programming as my hobby (don't really have a real one at the moment). I was thinking of starting with C++ to learn the basics of OO programming, and then moving onto C# or Objective-C... My end goal is to either join an indie game development team until I have enough experience to possibly lead my own way down the line or to write iPhone or Android applications... depending on how I feel after experiencing some programming. I'm not a total newb, I took some high school programming courses (in Java and Visual Basic, I also know HTML/CSS from personal experience) so I'm not going into this completely blind.

Any pointers for someone in my position? Tips? Advice that isn't "don't even bother trying?" Thanks in advanced! I have lots of motivation and a strong will so I think I should be able to do it.

I'll have to disagree with kliu0x52 and recommend a modern language such as C#. C doesn't teach you to think with objects and encourages practices considered sloppy such as extensive use of the preprocessor, global functions and variables, abuse of casts, using return codes for error-checking, memcpy(), and the list goes on. Skip C for now, you can always learn it later, it's very simple (and very stupid).

To learn the basics of OO you're much better off with a real, pure OO language like Java or C# than C++. C++ is hard to learn and you won't be productive with it before quite a while. However, it's definitely a big plus (a double plus :p) to know C++ if you want to work as a programmer, and going through it definitely teaches you a lot of things about how higher-level languages work under the hood. I personally started with C++, and I must say all the other languages were a breeze and a relief after that.

  • 0
C doesn't teach you to think with objects

It teaches the underpinnings of OO. He's already done OO in Java. C teaches you how OO is implemented. Back when I tutored people and had to explain to them things like static and virtual methods, I often found that the best explanations, the ones that elicited a "oh, I get it now, that makes so much more sense than how I was taught" was when I broke things down and explained how OO was implemented and how that affects why some things in OO are the way that they are.

It's the difference between telling someone that they can use a fire extinguisher to put out a fire and explaining to someone what goes on chemically when something burns and how, as a result, you can stop a fire by either depriving it of the reactants--the latter makes the former more understandable and also opens up a wider perspective (e.g., "so that means that I can also stop a fire by dumping sand on it since that too will choke out the oxygen, right?").

encourages practices considered sloppy such as extensive use of the preprocessor, global functions and variables, abuse of casts, using return codes for error-checking, memcpy(), and the list goes on.

You don't have to use the preprocessor that much, and C does not encourage the use of global variables. The so-called "abuse" of casting is just a way of revealing How Things Really Work. And I don't see how memcpy is abusive.

Skip C for now, you can always learn it later, it's very simple (and very stupid).

It's very simple. And insanely powerful. And absolutely essential for anyone who wants to be a real programmer (instead of just a hobbyist). And an understanding of C will make so many things in other languages make more sense.

I'll admit that I do harbor a very deep disdain for Java and C# (I've been known to call them toy languages when I'm cranky :)). "Modern" languages focus on making life easier for the programmer. And they focus on a "bigger picture" approach to development. It's all about big, grand architecture and it's great if you are working on some large project comprised of various interconnected components. And if that's what you're doing, then yea, go ahead and use an OO language--there is a time and place for them! But be aware that they really narrow your perspective; learning C# is like vocational training while learning C is really learning how to program. Someone (I forgot who) once wrote that Java and C# is a lot like a hardware store approach: you walk in and look on the shelf for some part to do the thing that you need; it takes away from a lot of the problem solving and ingenuity of real programming.

The other big problem is that abstractions are not perfect. One of the Google founders once joked that software gets twice as slow every 18 months and that's why we need Moore's Law. But why is that? When people are so far separated from What Really Goes On Underneath, they are liable to make dumb design decisions. For example, SOAP. Or anything XML, for that matter (obviously, whoever thought it'd be cute to use XML for everything has no friggin' idea of the costs associated with using XML as a format). If you knew that concatenating two strings involves creating a new string, copying the contents of string A, copying the contents of string B, and freeing string A and B, then you'd be more careful about using such operations unnecessarily. If you understood what kind of huge bookkeeping costs the heap manager has to go through to allocate the memory of string C and "free" the memory for string A and string B (heaps are very complicated and are very expensive clock-cycle-wise), then you'd be even more keen to avoid such operations (or use the stack or some custom allocation scheme if possible). If you understood what the system has to go through to carry out a floating point operation, then you'd use x+=x<<1 instead of x*=1.5 (okay, granted, knowing C won't expose the costs of floating point or heaps, which is why I also advocate learning a bit of assembly :)). The "modern" languages want you to ignore such inconvenient details. And as more people write code without knowledge of What Really Goes On, then we will get progressively less efficient code (I'm not saying that you should abandon C# for C, but rather that if you knew C, then that understanding of the guts of the system will make you a more efficient C# programmer).

  • 0

Hello. Thanks for the replies.

My former experience with programming happened over 6 years ago so I am quite rusty and do not remember, but I think I would be able to pick it up eventually. Thank you both for your advice, but I think starting with C may be a good idea after all - kliu0x52 makes a very convincing argument :)

I plan on starting as a hobby, but depending how much I enjoy doing it, it could move onto a full-time career for me. I've grown up around computers yet never dived into programming seriously. I think that time has come now. Any advice on where to start? Any good books or websites for someone in my position? I do not remember much about OO or procedural programming at all.... my most recent programming knowledge is HTML & CSS which probably won't help with where I am headed. Any direction would be appreciated!

  • 0
Hello. Thanks for the replies.

My former experience with programming happened over 6 years ago so I am quite rusty and do not remember, but I think I would be able to pick it up eventually. Thank you both for your advice, but I think starting with C may be a good idea after all - kliu0x52 makes a very convincing argument :)

I plan on starting as a hobby, but depending how much I enjoy doing it, it could move onto a full-time career for me. I've grown up around computers yet never dived into programming seriously. I think that time has come now. Any advice on where to start? Any good books or websites for someone in my position? I do not remember much about OO or procedural programming at all.... my most recent programming knowledge is HTML & CSS which probably won't help with where I am headed. Any direction would be appreciated!

I doubt you will score a fulltime career without a CS degree. In my university comp sci classes has a few 40-50 year old people trying to get their degree because they can't even find a job with 20+ years of programming experience.

But as a hobby, by all means pursue it. You can probably start off with some programing tutorial videos (good place to look is @ torrents) and pick it up pretty quickly with your prior experience.

As far as developing applications, I can't help you there (I'm more of a systems programming guy). But i can tell you that its best to use a sophisticated IDE (For example, you really wouldn't want to program a gui by hand, i tried it and progress has been veerryy slow for me [lost motivation])

SO where to really start? thats up to you. Google something like "developing applications for iphone" and see where that takes you. Hit a roadblock? google the obstacle and learn how to overcome it. Thats how i self-learn, maybe it will work for you.

  • 0
Thank you both for your advice, but I think starting with C may be a good idea after all - kliu0x52 makes a very convincing argument :)
I'll eventually take the time to respond to his argument properly, but I'm not that strongly opposed to learning C first. After all, I started with C++, which is a superset of C. So, C it is, then. It's one of the least productive languages on earth, but it does show you the basics. Just don't stick around with it for too long, you'll grow bored.
Any advice on where to start? Any good books or websites for someone in my position?
A good C tutorial :

http://www.cprogramming.com/tutorial.html#ctutorial

A good book : http://www.amazon.com/Primer-Plus-5th-Step...5/ref=pd_cp_b_1

A good development tool : http://www.microsoft.com/express/vc/

Tip : when you create a new project in Visual C++, make sure you select a general, empty project (I think the default is a Win32 application). Also, since you want to write C, not C++, go to your Project Properties and somewhere in the compiler options you'll be able to set "Compile as C" (it will be Compile as C++ by default).

Have fun. :)

Edited by Dr_Asik
  • 0
Hi guys. I'm not in any computer-related programs in University/College but I've decided that I have too much free time, and I'd like to pick up programming as my hobby (don't really have a real one at the moment). I was thinking of starting with C++ to learn the basics of OO programming, and then moving onto C# or Objective-C... My end goal is to either join an indie game development team until I have enough experience to possibly lead my own way down the line or to write iPhone or Android applications... depending on how I feel after experiencing some programming. I'm not a total newb, I took some high school programming courses (in Java and Visual Basic, I also know HTML/CSS from personal experience) so I'm not going into this completely blind.

There is no generic answer, what tool you should pick depends entirely on what it is you want to do, and not to discourage you, but it's a very long road.

Before you learn any programming language, you should be comfortable with the underlying programming concepts that are common to most languages and understand how computers and operating systems work. Learning a lower-level language like C (or C++ without all the abstract stuff) is helpful here, as it teaches you how the system works without a lot of abstraction.

If you want to write games for Windows, there is really only one path, and that is learning C++ and C (most C features are available from C++ as well, and most C code is valid C++). That is only the start though. After you do that, you have to learn the most common Windows APIs (which are all C, but accessible from C++). Once you've got the foundation of C++ and Windows down, you can move on to learning the basic 3D concepts (provided you understand the math already). Once that's done, you can start learning Direct3D and the other toolkits that make up DirectX (ie sound, input/output, etc). You'll also have to learn the basics of the various graphics and 3D tools, since you'll probably want to make basic mock-up graphics yourself.

If, on the other hand, you want do do iPhone development, you'll have to fork up the cash for a Mac and the development tools (you cannot do this from Windows), and then learn objective-C and the basics of OS X. Android, I believe is focused solely on running Java programs (at least it is on the phones currently on the market), so you'll have to know Java and the APIs it uses.

  • 0
If you want to write games for Windows, there is really only one path, and that is learning C++ and C (most C features are available from C++ as well, and most C code is valid C++). That is only the start though. After you do that, you have to learn the most common Windows APIs (which are all C, but accessible from C++). Once you've got the foundation of C++ and Windows down, you can move on to learning the basic 3D concepts (provided you understand the math already). Once that's done, you can start learning Direct3D and the other toolkits that make up DirectX (ie sound, input/output, etc). You'll also have to learn the basics of the various graphics and 3D tools, since you'll probably want to make basic mock-up graphics yourself.
For a game development career, that's true, but a hobbyist can write games for Windows using C# and XNA, or Python and PyGame or any similar tools, and be a lot more productive (and have that much more fun doing it) than going the long-winded C++/D3D path. Also, all the non-framework-specific things you learn using these tools are valid if you later learn C++ and DirectX. 3D math, pathfinding, game architecture, basic UI skills, etc., those are the most important skills and they apply whatever language you use.
  • 0

Thanks again for the replies!

I doubt you will score a fulltime career without a CS degree. In my university comp sci classes has a few 40-50 year old people trying to get their degree because they can't even find a job with 20+ years of programming experience.

Yeah, I realize this. If programming became more of a hobby for me, I'd have no problem going back to school for a CS degree. Then again, Ken Levine, creator of System Shock & BioShock, had a BA and look at him now... so I have hope.

Thanks for your advice as well, Dr_Asik... especially the Visual C++ settings advice... I probably would not have been able to figure that out myself!

hdood, thanks for the informative reply. In terms of PC game development (starting with Windows), I'd most likely start with 2D games (platformers, RPGs)... of course, this is once I even get to the point of being able to do this, which I realize is down the long road. (Then again, with learning any skill, it takes years so I don't expect programming to be any different... if anything, I imagine it takes longer)

I understand there is a large difference in difficulty in creating 2D vs 3D games as well... but that is far down the road. I guess I shall get my bearings on C/C++ down first. I understand why people go to school to learn this stuff - it can be intimidating without direction from a knowledgeable person.

I'll be checking this thread from time to time, so if anyone has last-minute advice on direction for me, I would appreciate it. :)

  • 0
hdood, thanks for the informative reply. In terms of PC game development (starting with Windows), I'd most likely start with 2D games (platformers, RPGs)...

[...]

I understand there is a large difference in difficulty in creating 2D vs 3D games as well... but that is far down the road.

Yeah, but 2D stuff is actually made with Direct3D now. It's just a 3D scene with no depth so that everything looks flat. If you're running Vista or Windows 7 you're even looking at a Direct3D scene right now. Your browser window is actually two flat triangles put together to create a square, and then the contents of the window is pasted onto them as a texture.

Asik's suggestion of C# and XNA might be an option to get something working faster and familiarize yourself with gaming concepts, even if the language and toolkit isn't very relevant for real game development.

  • 0
It teaches the underpinnings of OO. He's already done OO in Java. C teaches you how OO is implemented. Back when I tutored people and had to explain to them things like static and virtual methods, I often found that the best explanations, the ones that elicited a "oh, I get it now, that makes so much more sense than how I was taught" was when I broke things down and explained how OO was implemented and how that affects why some things in OO are the way that they are.
First, you overestimate his skills in object-oriented programming. He's done a high school class in Java 6 years ago. It takes much more than a single introductory course in programming to learn anything about OOP, even if it's in a pure OO language like Java; moreover, this was a high-school level course and he's likely forgotten most of it.

As a result, learning C won't help him understand the underpinnings of OOP because he barely has any notion of OOP. Rather than bringing him a better understanding of already well-known high-level languages, it will teach him how to do things in a simple procedural way, making the transition to OOP less natural. I think it's better to get a very good feeling of OOP asap because good habits are essentials and bad habits are hard to get rid of. Thus my recommendation of C#. Or even C++ for that matter (even though it sucks as an OO language).

It's the difference between telling someone that they can use a fire extinguisher to put out a fire and explaining to someone what goes on chemically when something burns and how, as a result, you can stop a fire by either depriving it of the reactants--the latter makes the former more understandable and also opens up a wider perspective (e.g., "so that means that I can also stop a fire by dumping sand on it since that too will choke out the oxygen, right?").
Sure. But it's better to teach them first how to use a fire extinguisher, so that if a fire starts before the course is over, at least they'll be able to do something against it. Knowing how to use a fire extinguisher, they could even start earlier practicing other fire-fighting skills such as safely evacuating the building, using the right extinguisher against a certain type of fire, etc. With a higher-level language, you're not only productive faster, you also start learning other important programming skills earlier, such as reusing well-tested code instead of making up your own, decoupling components using interfaces, events, making exception-safe code, etc. It's not wasted time.
You don't have to use the preprocessor that much, and C does not encourage the use of global variables. The so-called "abuse" of casting is just a way of revealing How Things Really Work. And I don't see how memcpy is abusive.
How things really work is that there are no type, no variables, no decimal values, no characters, no internet connections. There are just bits and buses. A C variable is an abstraction over a reserved memory area in assembly. A C for loop is syntactic sugar for a jump and a label in assembly. It's nice to know about it, but you rarely need to know what's happening at that level. And the same applies with C# vs C. Sure it's nice to know what really is a virtual method, but you rarely need to care about that. It's pretty advanced stuff and a beginner doesn't need to know about it right off the bat, it can be overwhelming. I think it's much more encouraging if a beginner can quickly see results with few lines of code and make lots of cool applications, then if he wants to take it to the next level he can look under the hood and try to understand how to write better code.

Also, you shouldn't be thinking your design at such a low-level. You should think your design at the highest possible level (interfaces, objects, packages, etc), and the highest possible level in C is depressingly low. There should be a difference between design and implementation, and C offers little support for that.

As for memcpy() : http://www.theregister.co.uk/2009/05/15/mi...anishes_memcpy/

It's very simple. And insanely powerful. And absolutely essential for anyone who wants to be a real programmer (instead of just a hobbyist). And an understanding of C will make so many things in other languages make more sense.
"Real programming" isn't synonymous with "system programming". Writing a windows application in Visual Basic is real programming. Writing an ASP.NET application for a web browser is real programming. Some programmers make a living out of just that, and they probably know a lot of things about application development a system programmer doesn't know. It's just a different field of specialization. A lot of C programmers today are unwilling to learn anything else than C and they can't do OOP and they can't do functional programming. Is that better? I think it's worse.

As for the rest, I share your views about the importance of learning the fundamentals of computing (yes, including C) and how it's important to know the implications of what you're writing in higher-level languages. Any good software engineering or computer science program in university should teach you that; if they don't, choose another university. But I think new programs should not be written in C unless it's absolutely necessary. Usually you can use at least C++. And usually only part of the program absolutely requires the use of a system language; the rest can be written in Python or Java or whatever. If you take games, for instance, only the engine is written in C++, the actual logic is written in Lua or other scripting languages. I think using these new languages greatly helps to make a smaller codebase, one that's faster to develop, easier to read, maintain and expand upon; and you can easily get good performance with them if you know what you're doing.

Edited by Dr_Asik
  • 0
First, you overestimate his skills in object-oriented programming. He's done a high school class in Java 6 years ago. It takes much more than a single introductory course in programming to learn anything about OOP, even if it's in a pure OO language like Java; moreover, this was a high-school level course and he's likely forgotten most of it.

Fair enough. I'll concede that.

I'll nit on this red herring: that's a really bad article. In version 13.1 of its compiler (first used in VC7.1, XPSP2, and 2K3SP1 and supported the an appropriate SDK update around the time), Microsoft introduced "safe" copy methods that it has been encouraging everyone to move towards (and this was made the default in 14.0). These safe methods (which encompasses far more than memcpy) basically just add "cookies" to the memory that it checks to make sure are not overwritten, and all that MS was doing was saying finalizing this transition to those methods. These are still C functions, but with some nanny-checking. And the funny thing is, despite this new policy change Microsoft is still discovering bugs. As it turns out, Microsoft programmers are not dumb, and various analysis of patches that they've released have revealed that, for the most part, they've covered all the obvious problems; the sorts of problems that are being discovered are much more complex and nuanced and are not going to be solved this way.

"Real programming" isn't synonymous with "system programming". Writing a windows application in Visual Basic is real programming. Writing an ASP.NET application for a web browser is real programming. Some programmers make a living out of just that, and they probably know a lot of things about application development a system programmer doesn't know. It's just a different field of specialization. A lot of C programmers today are unwilling to learn anything else than C and they can't do OOP and they can't do functional programming. Is that better? I think it's worse.

I never said that people should not learn OOP. What I did say and emphasized in my sentence "And an understanding of C will make so many things in other languages make more sense." is that anyone who wants to do real programming needs to know C, not so much because they'll actually use C, but because it is the necessary foundation. Scientists crunching data from an experiment are not going to do 1.2345678 * 8.7654321 on a piece of paper. They will use a calculator or something like MatLab. So does that mean that we should tell elementary school kids, "hey, you don't actually need to do long multiplication in your life, so let's not waste time on that in class". As I said at the end of my post, "I'm not saying that you should abandon C# for C, but rather that if you knew C, then that understanding of the guts of the system will make you a more efficient C# programmer."

I think where we differ is whether that foundation should be established first or is something that you go back and build after you've gotten the rest, and that's a legitimate area of debate. I've long advocated for Perl as a good first get-your-toes-wet language because it's multi-paradigm (you can do classic imperative, you can do some OOP, and you can do functional programming--my personal experience was that Perl helped make learning Lisp easy) and, most importantly, it's extremely forgiving (because even I don't think that the first experience of a programmer should be some cryptic compiler warning :)). And then after that, get into C (I recommended C in this thread because he had already done some programming before, so he was, in my mind, at step 2). Once someone has gotten down the basics (the concept of variables, loops, conditionals, and functions), then it's time to build the formal foundation in part because it's so easy to ignore that foundation it once you've gotten the other stuff down (and it annoys me that so many people do ignore it) and in part because I see knowing the low-level stuff as helping grasp the nuances of the high-level stuff and not so much the other way around.

  • 0
I think where we differ is whether that foundation should be established first or is something that you go back and build after you've gotten the rest, and that's a legitimate area of debate.

This is the main area that concerns me... I'm a little confused as to where to start. You guys are saying that C is a good step two, but I feel that after all this time away from the programming experience I've had, I should maybe start at step one for a month or two... or is that too short/long. Suggestions? :p

  • 0

To be honest, with enough motivation you can start with any language. I started with C++ which is very complex and has lots of quirks, but I read my manual from cover to cover and got fairly proficient with it in about 4 months. Then it was really easy to learn C, Python, C#, Java...

It depends on your philosophy. With, say, C#, you can get results very quickly and it's quite intuitive, so it's a less of a steep curve, but then the difficulty ramps up when you try to learn C or C++. If you start with C or C++, then it's hell in the beginning, but once you're through, the worst is behind you, so to speak.

If you're really serious about programming and want to dive right into the meat, C or C++ are sensible options. If you'd rather have a bit of fun doing it and seeing more powerful programs right away, start with C# (Python, Java, Visual Basic are all good options too, but C# is the most C-like and is generally awesome). What's interesting about C# is that you can download a tool called XNA and easily create 2D or 3D games.

With enough perseverance, both routes lead the same way... I'd personally take the fun one.

  • 0
I doubt you will score a fulltime career without a CS degree. In my university comp sci classes has a few 40-50 year old people trying to get their degree because they can't even find a job with 20+ years of programming experience.

I just stumbled upon this thread and I HAD to comment on this. Even though a CS degree will help you get through the door and have some (depending on skill, experience, etc) influence on a starting from the "middle" instead of from the bottom (junior programmer vs unpaid intern assisting a programming team), it is absolutely not a requirement most of the time. In this industry it dosen't really matter if you have a degree or not, nor does it matter if you've been on the typing end of a terminal for 10 years. What really matters is skill and branding of your persona. I'll be more specific. If you want to make a career on any type of software engineering industry, you can either: a) Get a CS degree and start working as a programmer (preferably at the same time... no sense in losing time ;) ). After you get your degree and a few years down the line you'll probably have the experience and the education to make an early dive into looking into managerial or higher remuneration positions, be it on your current company or a different one. The most important rule here is to have managers that love you, so as to get recommended. b) If you don't have a degree the most important things are to contribute to opensource projects, have developed a few useful tools, or a program used by many (helps if many == "many of your peers"), maybe write a blog where you document ideas, problems, et al., and most important of all, get your name out there (on and off line). The moment you're known for being a superb programmer with documented success in opensource and with tools and useful (for the community) past programming and/or writing on your toolbelt, you've got what any other college educated software engineer dosen't have. Cred.

PD: Or you can also start doing your own thing. Start a startup of some kind and try to make it big... or strive for slow but steady achievement and build a business form it. Also, this is coming from a Chief Software Architect at a decently sized company, with no degree. Well actually I lie, I do have a degree in Finance, but I got my finance degree a year after becoming a Senior Programmer at a different company and I made little mention of it when I was interviewed for the SA position.

  • 0

I've been working on some class testing to get back into C++, so I was once again trying to do things in a game-like way.

I created the following code:

#include &lt;iostream&gt;
using namespace std;

//----------Class Player----------
class Player
{
protected:
	int Health, Damage;
public:
	Player() { set(100, 10); }
	Player(int one, int two) { set(one, two); }

	int getHealth() { return Health; }
	int getDamage() { return Damage; }
	void set(int newHealth, int newDamage) { Health = newHealth; Damage = newDamage; }
	void Attack(Monster enemy);
};

//----------Class Monster----------
class Monster
{
protected:
	int Health, Damage;
public:
	Monster() { set(100, 10); }
	Monster(int one, int two) { set(one, two); }

	int getHealth() { return Health; }
	int getDamage() { return Damage; }
	void set(int newHealth, int newDamage) { Health = newHealth; Damage = newDamage; }
};

//----------Test Function Prototypes----------
void TestPlayerFunctionality();
void TestMonsterFunctionality();
void TestAttackFunction();

//----------Main Function----------
int main()
{
	TestPlayerFunctionality();
	TestMonsterFunctionality();
	//TestAttackFunction();
	system("pause");
	return 0;
}

//----------Player Class Functions----------
void Attack(Monster enemy)
{
	enemy.set(enemy.getHealth() - Damage, enemy.getDamage());
	cout &lt;&lt; "After you attack, the enemy's health is " &lt;&lt; enemy.getHealth() &lt;&lt; "\n";
}

//----------Test Functions----------
void TestPlayerFunctionality()
{
	Player *you = new Player(120, 15);
	cout &lt;&lt; "Your health is " &lt;&lt; you-&gt;getHealth() &lt;&lt; "\n";
	cout &lt;&lt; "Your damage is " &lt;&lt; you-&gt;getDamage() &lt;&lt; "\n";
	delete you;
}

void TestMonsterFunctionality()
{
	Monster *baddy = new Monster(20, 3);
	cout &lt;&lt; "Monster's health is " &lt;&lt; baddy-&gt;getHealth() &lt;&lt; "\n";
	cout &lt;&lt; "Monster's damage is " &lt;&lt; baddy-&gt;getDamage() &lt;&lt; "\n";
	delete baddy;
}

void TestAttackFunction()
{
	Player *you = new Player(120, 20);
	Monster *baddy = new Monster(100, 15);
	you-&gt;Attack(baddy);

	delete you;
	delete baddy;
}

and just about everything works (although I commented out the TestAttackFunction() test to be worked on later.

Upon compiling the code I have there, I receive the following errors:

Line 16: "syntax error : identifier Monster"

Line 51: " 'Damage' : undeclared identifier"

Line 76: "Player::Attack function does not take 1 argument"

I've revisited the Monster class, and it seems to be fine to me.

The Damage variable IS obviously declared within either class (including the Player class which the function refers).

The Player::Attack function does indeed take one argument, this makes no sense.

I was using references, such as "void Attack(Monster const &enemy);" but doing so brought up even more, less understandable errors.

Can anyone figure out what's going on here, because it is totally eluding me.

  • 0

I've been working on some class testing to get back into C++, so I was once again trying to do things in a game-like way.

I created the following code:

#include &lt;iostream&gt;
using namespace std;

//----------Class Player----------
class Player
{
protected:
	int Health, Damage;
public:
	Player() { set(100, 10); }
	Player(int one, int two) { set(one, two); }

	int getHealth() { return Health; }
	int getDamage() { return Damage; }
	void set(int newHealth, int newDamage) { Health = newHealth; Damage = newDamage; }
	void Attack(Monster enemy);
};

//----------Class Monster----------
class Monster
{
protected:
	int Health, Damage;
public:
	Monster() { set(100, 10); }
	Monster(int one, int two) { set(one, two); }

	int getHealth() { return Health; }
	int getDamage() { return Damage; }
	void set(int newHealth, int newDamage) { Health = newHealth; Damage = newDamage; }
};

//----------Test Function Prototypes----------
void TestPlayerFunctionality();
void TestMonsterFunctionality();
void TestAttackFunction();

//----------Main Function----------
int main()
{
	TestPlayerFunctionality();
	TestMonsterFunctionality();
	//TestAttackFunction();
	system("pause");
	return 0;
}

//----------Player Class Functions----------
void Attack(Monster enemy)
{
	enemy.set(enemy.getHealth() - Damage, enemy.getDamage());
	cout &lt;&lt; "After you attack, the enemy's health is " &lt;&lt; enemy.getHealth() &lt;&lt; "\n";
}

//----------Test Functions----------
void TestPlayerFunctionality()
{
	Player *you = new Player(120, 15);
	cout &lt;&lt; "Your health is " &lt;&lt; you-&gt;getHealth() &lt;&lt; "\n";
	cout &lt;&lt; "Your damage is " &lt;&lt; you-&gt;getDamage() &lt;&lt; "\n";
	delete you;
}

void TestMonsterFunctionality()
{
	Monster *baddy = new Monster(20, 3);
	cout &lt;&lt; "Monster's health is " &lt;&lt; baddy-&gt;getHealth() &lt;&lt; "\n";
	cout &lt;&lt; "Monster's damage is " &lt;&lt; baddy-&gt;getDamage() &lt;&lt; "\n";
	delete baddy;
}

void TestAttackFunction()
{
	Player *you = new Player(120, 20);
	Monster *baddy = new Monster(100, 15);
	you-&gt;Attack(baddy);

	delete you;
	delete baddy;
}

and just about everything works (although I commented out the TestAttackFunction() test to be worked on later.

Upon compiling the code I have there, I receive the following errors:

Line 16: "syntax error : identifier Monster"

Line 51: " 'Damage' : undeclared identifier"

Line 76: "Player::Attack function does not take 1 argument"

I've revisited the Monster class, and it seems to be fine to me.

The Damage variable IS obviously declared within either class (including the Player class which the function refers).

The Player::Attack function does indeed take one argument, this makes no sense.

I was using references, such as "void Attack(Monster const &enemy);" but doing so brought up even more, less understandable errors.

Can anyone figure out what's going on here, because it is totally eluding me.

Are your classes in seperate files? If so, be sure to add "#include <monster.h>" at the top of the player class. Also, it is very difficult to follow the organization of this code. I see the function prototypes, but I do not see the seperate function implementations. For example:

void Player::Attack(Monster enemy)
{
}

Those have to be outside of the class itself. :)

  • 0

[edit] wouldn't be bad to make this a sticky thread, so others may be able to use it without me repeating myself. This is a very common question here.[/edit]

if you don't have a compiler (to make .exe) go to http://www.bloodshed.net/dev/index.html download version 4, version 5 is a buggy beta. if you do dl ver.5, then update .exe using cvs at sourceforge.

As for books go, the best one is "The c++ programming language" by Bjarne Stroustup (the inventer of c++) is the best. Itis one of those books that from a beginner to Linus Torvalds (linux guy) and developpers use.

edit: the sites below all helped me in some way or another. First you should learn c programming, then move on to c++ and win32api and other api's.

http://www.cplusplus.com/doc/tutorial/ This site covers a lot! I learned a lot of Object Oriented Programming from here.

http://www.cplusplus.com/ref/ This is a handy site for beginners. This has examples and instructions for many standard library functions.

http://www.sgi.com/tech/stl/ This is handy resource. Most of functions show prototypes and explenations for all of STL.

http://www.allegro.cc This has an easy to use complete game programming library. It's well evolved and used. It supports directx hardware accel through its functions.

http://www.sourceforge.net This is for those of you interrested in developping open source, giving feedback, bug reporting, latest builds, and complete code of some of your favorite apps... and much much more.

http://oopweb.com/CPP/Files/CPP.html This has a list of many tutorials and other resources.

http://www.msdn.microsoft.com A developer's ultimate resource.

http://www.winprog.org/tutorial The best site for learning windows programming. The guy set out to make it easy and quick. I think he certainly achieved his goal.

http://www.cprogramming.com/tutorial.html another c tutorial

http://www.research.att.com/~bs/homepage.html The inventors home page.

Nice tips/resources! Thanks for sharing!

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • JBL BAR 800 5.1.2 Dolby Atmos soundbar is an amazing deal today by Sayan Sen This Amazon Prime Day 2026 sales so far we have had a couple of nice deals related to sound and audio. First we have the Sennheiser HD 600 at its lowest ever price of just $225. Next we also have the Beats Studio Pro at its lowest price ever at just $150. However perhaps you prefer your gear to sound great on a larger scale, like throughout the room. In that case an all-in-one soundbar system can help and currently JBL's BAR 800 is a great deal for sure as it's up for grabs at just $600 (purchase link under the specs table down below). One thing that should be appreciated a lot about these JBL soundbars is their spec sheet and the frequency response data it provides. The firm is honest about it as JBL confirms the subwoofer is able to go down to 35 Hz at -6dB or F6. This means it should be covering 40Hz and up very well, where most of the bass lies. You miss out on a lot of sub-bass but that is to be expected given the price point and the subwoofer driver size. Speaking of which, it is a 10-inch driver and promises a max output power of 300 watts at 1% THD (total harmonic distortion). JBL also claims the system will provide you with a "True Dolby Atmos" experience. The surround speakers are wireless and battery-powered which means setting them up should be really convenient. The technical specs of the JBL BAR 800 are given in the table below: Specification Value Channel Configuration 5.1.2-channel soundbar system Dolby Atmos Yes, with 2 up-firing drivers Total System Power Output 720 W Soundbar Power Output 340 W Surround Speaker Power Output 2 × 40 W Subwoofer Power Output 300 W Soundbar Drivers 3 × 46×90 mm racetrack drivers, 3 × 20 mm tweeters, 2 × 70 mm up-firing full-range drivers Surround Speaker Drivers 1 × 46×90 mm racetrack driver (each speaker) Subwoofer Driver 10-inch (260 mm) wireless subwoofer Frequency Response 35 Hz – 20 kHz (-6 dB) Audio Inputs Optical, Bluetooth, Chromecast built-in, AirPlay, Alexa Multi-Room Music (MRM), USB* HDMI Inputs 1 HDMI video input HDMI Output 1 HDMI eARC output HDCP Version 2.3 HDR Pass-Through HDR10, Dolby Vision Bluetooth Version 5.0 Wi-Fi Version 6, 6E Streaming Services Chromecast built-in, Apple AirPlay, Alexa MRM Get it at the link below: JBL Bar 800-5.1.2-Channel Dolby Atmos soundbar with Detachable Surround Speakers (Black): $599.85 (Sold and Shipped by Amazon US with Prime) Prime subscription can be cancelled within three business days. Good to know This Amazon deal is U.S. specific, and not available in other regions unless specified. We only use first-party seller links (at the time of article publishing); ensure that you purchase from a first-party seller link only. Check out Today's Deals on Amazon | or our recent tech deals. Become a Prime member (for Students or SNAP) via Neowin Get Prime Access - Prime for half price (for qualifying Medicaid, EBT, SNAP) Subscribe to Prime Video, Audible Plus, Music Unlimited or Kindle Unlimited via Neowin As an Amazon Associate, we earn from qualifying purchases.
    • Microsoft releases PowerToys v0.100.1, fixes a bug that made remapped keys misbehave by Ivan Jenic Microsoft just released PowerToys v0.100.1, a patch update that addresses several stability and behavior issues found in v0.100.0. The v0.100.0 patch was a significant update for PowerToys, as it introduced all sorts of new features and additions, such as a rebuilt Shortcut Guide, a Command Palette Extension Gallery, webcam overlay support in ZoomIt, and more. However, the v0.100.0 version also introduced some bugs and stability issues. And now, Microsoft is addressing these issues in the new patch. The most impactful fix in this release perhaps is in Keyboard Manager, where remapped modifier keys were being delivered as system-key events, causing unexpected behavior in apps. The clearest example of this was Alt-to-Backspace remaps, deleting whole words instead of a single character. So, if you thought there was an issue with your keyboard, Microsoft just confirmed that it was PowerToys. Beyond the Keyboard Manager fix, v0.100.1 also addresses several other issues. It fixes a bug with Power Display that was preventing monitors from waking from standby correctly. Additionally, the new update patches Quick Access crashes on launch, and resolves a Shortcut Guide crash that occurred when switching between sidebar sections. Here’s the full changelog: Color Picker Fixed a bug where the main Color Picker window could appear inside the zoomed-in picker view Command Palette Fixed Run history initialization in AOT builds Fixed a bug where the Performance Monitor dock item could show ??? after restart Fixed the Hibernate command using the Sleep icon Limited the "pin to dock" dialog to displays where the dock is enabled Keyboard Manager Fixed modifier keys remapped to non-modifier keys being delivered as system-key events, which caused unexpected behavior in apps such as Alt-to-Backspace deleting whole words Power Display Fixed a bug where selecting On in the monitor power-state control did not wake a monitor from standby Fixed built-in display detection and brightness control on dual-GPU laptops where the internal panel is driven by the discrete GPU PowerToys Run Fixed VS Code Workspaces discovery after VS Code moved recently opened workspace data to shared storage Quick Access Fixed Quick Access flyout crashes caused by unhandled XAML exceptions during launch or page navigation Shortcut Guide Fixed a crash when navigating between Shortcut Guide sidebar sections Fixed number-key rendering in shortcut manifests and added a Postman shortcut manifest Updated bundled shortcut manifests to use the literal number-key token so number keys render correctly across apps ZoomIt Fixed a race condition in audio initialization for ZoomIt video recording You can download PowerToys v0.100.1 from the official GitHub releases page.
    • OBS Studio 32.2.0 Beta 2 by Razvan Serea OBS Studio is software designed for capturing, compositing, encoding, recording, and streaming video content, efficiently. It is the re-write of the widely used Open Broadcaster Software, to allow even more features and multi-platform support. OBS Studio supports multiple sources, including media files, games, web pages, application windows, webcams, your desktop, microphone and more. OBS Studio Features: High performance real time video/audio capturing and mixing, with unlimited scenes you can switch between seamlessly via custom transitions. Live streaming to Twitch, YouTube, Periscope, Mixer, GoodGame, DailyMotion, Hitbox, VK and any other RTMP server Filters for video sources such as image masking, color correction, chroma/color keying, and more. x264, H.264 and AAC for your live streams and video recordings Intel Quick Sync Video (QSV) and NVIDIA NVENC support Intuitive audio mixer with per-source filters such as noise gate, noise suppression, and gain. Take full control with VST plugin support. GPU-based game capture for high performance game streaming Unlimited number of scenes and sources Number of different and customizable transitions for when you switch between scenes Hotkeys for almost any action such as start or stop your stream or recording, push-to-talk, fast mute of any audio source, show or hide any video source, switch between scenes,and much more Live preview of any changes on your scenes and sources using Studio Mode before pushing them to your stream where your viewers will see those changes DirectShow capture device support (webcams, capture cards, etc) Powerful and easy to use configuration options. Add new Sources, duplicate existing ones, and adjust their properties effortlessly. Streamlined Settings panel for quickly configuring your broadcasts and recordings. Switch between different profiles with ease. Light and dark themes available to fit your environment. …and many other features. For free. At all. OBS Studio 32.2.0 Beta 2 changelog: Beta 2 Changes Fixed a CI deployment issue. There are no application changes since Beta 1. 32.2 New Features Replaced add source dropdown with new dialog [Warchamp7] Improved FPS selector UX [jcm93] Added missing file support for filters [exeldro] Added ability for plugins to set custom icons for new source types [cg2121] Included .webp files when adding a directory to Image Slide Show source [TarunCore] Added copy paste functions to frontend API [exeldro] Added filter to compose SDR into HDR [jpark37] Added delete as a hotkey to delete sources on macOS [PatTheMav] Added dynamic bitrate support to multitrack video [lexano-ivs] 32.2 Changes Forced Intel-based installations to update to Apple Silicon version on macOS [PatTheMav] This change means that OBS Studio versions built for Intel-based Macs but running on Apple Silicon Macs will automatically update to OBS Studio built for Apple Silicon Macs. If an installation was using third-party plugins, those plugins will no longer load until replaced with Apple Silicon versions. Fixed audio mixer state getting out of sync when changing settings via websockets or plugins [Warchamp7] Added theming for checked QToolButtons [glikely] Improved OpenGL performance slightly on low-end machines [kkartaltepe] Set minimum size for color source to 1 pixel [exeldro] Added minimum width to spinboxes [Warchamp7] Disallowed overwriting the crash handler [sebastian-s-beckmann] Applied process mitigation policies for Windows [notr1ch] Adjusted description of multitrack video [jhnbwrs] Changed new capture devices to use fallback frame rate by default [PatTheMav] Improved DLL loading behavior on Windows [notr1ch] Limited multitrack video config to Custom service [PatTheMav] 32.2 Bug Fixes Fixed OAuth and dock state save corruption [PatTheMav] Fixed group bounds not resizing when removing items [howellrl] Fixed canvas mixes not being restored after video reset [dsaedtler] Fixed some erroneous crashes during shutdown [Warchamp7] Fixed display capture sometimes capturing black after a duplicator failure [ThrowTop] Fixed color of controls dock output buttons in System theme [shiina424] Fixed virtual camera reset failures [stephematician] Fixed potential crash when user discards changes in the settings window [suogesi] Fixed incorrect return value in virtualcam filter [xtfo] Fixed source toolbar buttons not working after dragging a source into a group [Warchamp7] Fixed properties hint icon spacing [Warchamp7] Fixed potential crash when a video device reconnects on macOS [jcm93] Fixed an issue where PipeWire could fail on NVIDIA GPUs [hoshinolina] Fixed obs_canvas_get_video_info returning incorrect framerate [dsaedtler] 32.2 Deprecations Deprecated obs_properties_add_button [sebastian-s-beckmann] Download: OBS Studio 32.2.0 Beta 2 | Portable | ARM64 | ~200.0 MB (Open Source) View: OBS Studio Homepage | Other Operating Systems | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Is a fast food restaurant a good metric to compare against?
    • Grand Theft Auto VI pricing revealed alongside Ultimate Edition and pre-loading details by Pulasthi Ariyasinghe Last week, Rockstar revealed Grand Theft Auto VI pre-orders will be starting soon, and just a day ahead of that, now the studio has announced the official pricing for the highly anticipated game. This has been a hotly debated topic among fans and industry veterans for a long time, considering the game is expected to be the biggest entertainment product launch ever. The confirmed pricing for the Grand Theft Auto VI standard edition is $79.99, which Rockstar says gives access to the "single-player experience set in the biggest, most immersive evolution of the series yet." This follows what most of our readers thought would happen with the pricing too. At the same time, a $99.99 Grand Theft Auto VI: Ultimate Edition has been confirmed as well, which lands with "an exclusive collection of premium vehicles, weapons, apparel, and action threaded across all aspects of Jason and Lucia’s story." Pre-ordering will also give fans extra bonuses, including a Vintage Vice City Pack of cosmetic items as well as a free month of GTA+. Head to the official website of the game here to check out all the cosmetic rewards the Ultimate Edition and pre-orders bring. Interestingly, the studio does not mention Grand Theft Auto VI multiplayer at all in today's announcement. Perhaps this will arrive later, following the campaign launch, or the studio is keeping that reveal for a later date. Digital pre-orders for Grand Theft Auto VI will begin on June 25, 2026, at midnight local time across regions for Xbox Series X|S and PlayStation 5. The title is slated to launch on November 19 on those same platforms. Pre-loading for Grand Theft Auto VI will kick off on November 12, giving players a week to get the game ready on their consoles. As for the physical edition, Take-Two has confirmed that this will be available without a disc, with the box only containing a download code inside. This will be purchasable starting November 12, giving players who take this route time to pre-load the title as well.
  • Recent Achievements

    • One Year In
      OHI Accounting earned a badge
      One Year In
    • First Post
      Almohandis earned a badge
      First Post
    • Rookie
      DaviKar went up a rank
      Rookie
    • Dedicated
      HidekoYamamoto94 earned a badge
      Dedicated
    • One Month Later
      timbobit earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      474
    2. 2
      +Edouard
      172
    3. 3
      PsYcHoKiLLa
      122
    4. 4
      Michael Scrip
      83
    5. 5
      Xenon
      72
  • Tell a friend

    Love Neowin? Tell a friend!