User profile: maeriden

User info
User name:maeriden
Name:Daniele
Location:Italy
Bio:In "Occupation" I couldn't set NEET :(

I learned the basics of C in university, and that's my only formal programming education
After dropping out I learned a bit of python, which was my introduction to OOP, and now I'm trying to learn C++ from self-study

I'm trying to create a simple game engine as a learning project. I know it's useless, but it's a lot easier to study if you're working on something that's close to your interests

Currently waiting for a java course to start
Statistical data
Birthdate:Nov 18, 1990
Gender:Male
Occupation:Other
Skills:C
C++
Python
History
Joined:
Number of posts:228
Latest posts:

class with custom constructor, within another class
You can't initialize an object in the class declaration. You do that in the class ctor [code]class G...

Programming Programs
Dev C++ is an IDE, not a compiler. The compiler it uses is MinGW I think

Erase white spaces from stream
Nope. Stream manipulators work with the extraction and insertion operators. Skipws is set to on by d...

What is the different between int *x and int * x?
When you declare a variable the asterisk means that they are pointers When you use a pointer the ast...

Adding numbers up to 512 digits, placing them into arrays?
like I said, the size of an array must be known at compile time unless you use dynamic memory alloca...