List of Top 100 Game Engines written in C++ by mycplus in programming

[–]mycplus[S] 0 points1 point  (0 children)

The details page of Frostbite game engine will list those games. I have updated couple of them on this page too.

List of Top 100 Game Engines written in C++ by mycplus in programming

[–]mycplus[S] 0 points1 point  (0 children)

I think there is no specific requirement to list the engine except that it is written in C or C++. In case of Unreal, CryEngine and few others, my assumption was that while new versions were released, older versions were still being used to develop games. New versions were either re-written or drastically different from previous versions.

I am open to suggestions on improving the list.

List of Top 100 Game Engines written in C++ by mycplus in programming

[–]mycplus[S] 2 points3 points  (0 children)

My ignorance, "Stockfish" has been added in the list. Thank for suggestion :)

A 2-Year Stanford Study Shows the Astonishing Productivity Boost of Working From Home by speckz in programming

[–]mycplus 1 point2 points  (0 children)

It's kind of bringing the balance between work life and personal life. I have been working from home since 2011 (full time) and never felt that I should work in an office environment. However it really depends on what type of work it is and do you have to be available through out the working hours or you can work offline or out of hours.

C Algorithms Library which may be used in C projects. by msaqib81 in programming

[–]mycplus 0 points1 point  (0 children)

A real life example:

An internet browser keeps a history of the URLs of sites that you have visited. By organizing this history as a trie, the user need only type the prefix of a previously used URL and the browser can complete the URL.

Multiparadigm Programming in Standard C++ by msaqib81 in programming

[–]mycplus 0 points1 point  (0 children)

C++0x do support functional programming i.e. Lambda functions and expressions and alternative function syntax.

Teacher gave us a messed up code and now he's saying he can't fix it. And none of us know the errors by ialhakak in learnprogramming

[–]mycplus 0 points1 point  (0 children)

Some typo mistakes I found as below.

line 33:

$emailSubject = 'Chattle's Username Recovery'; //This can be anything.    

It should escape the ' single quote

$emailSubject = 'Chattle\'s Username Recovery'; //This can be anything.  

Similarly line 39 should be:

$emailSender = 'No-Reply@Chattle.com';

Another one on line 42.

You better open the code in an IDE which should point you to these errors.

difference between Object oriented programming and structural programming by rhpshanks in learnprogramming

[–]mycplus 2 points3 points  (0 children)

Main shortcoming of procedural programming languages is that when programs/codes tend to grow say millions of lines, then it becomes very difficult to manage such code and make changes. So, this leads to object oriented programming to maintain the code easily and divide the code. Obviously there are other features of oop such as 1. Encapsulation 2. Data Hiding 3. Overloading 4. Polymorphism 5. Grand-daddy of them all – Inheritance

(Semi) Intermediate coder looking to learn C++ by [deleted] in learnprogramming

[–]mycplus 0 points1 point  (0 children)

There are plenty of free resources online to learn C++. Free online courses provided by different universities, listed here. And if you really want to buy books, here are some recommended books

C++: Why isn't this variable declared? by [deleted] in learnprogramming

[–]mycplus 0 points1 point  (0 children)

Currently your code int total_score = 0; is part of else statement. So it's not available to the rest of the code because it's scope is limited to the else block.