C++ Namespaces
A namespace is basically a container for a group of variables/functions etc. I can pretty much guarantee everyone reading this tutorial has already... more »
Tweet 0 CommentsSave Tags: c-and-cpp, how-to, methodology, tools
Calling unmanaged DLL functions from C#
There are two ways that C# code can directly call unmanaged code: Directly call a function exported from a DLL or Call an interface method on a COM... more »
Tweet 0 CommentsSave Tags: .net, c-and-cpp, how-to
First impression of Google Go programming language
"Go" is a new systems programming language created by Google. Syntax is based on C++, and it compiles (like greased lightning apparently) – even has a... more »
James Gosling must be loving the Go language
James Gosling, the creator of Java, said on an interview 10 years ago that if he were to recreate Java, he would make it a delegation-only language.... more »
Tweet 3 CommentsSave Tags: c-and-cpp, java, opinion, other languages
C, Erlang, Java and Go Web Server performance test
Note: Chinese comments are many but the article is in English Test a hello world web server in C, Erlang, Java and the Go programming language. * C,... more »
Tweet 5 CommentsSave Tags: c-and-cpp, java, opinion, other languages
Google Go: New Programming language
Google's new open Source Language, an Insider.
Tweet 0 CommentsSave Tags: c-and-cpp, news, open source, other languages
Tutorials - Graphics / Game Programming
So, I'm writing this tutorial for those who might want to take a more 'traditional' introduction to graphics, instead of taking the more common... more »
Tweet 1 CommentsSave Tags: c-and-cpp, games, how-to
Qt Designer Video Tutorial
While working on an application I'm writing using PyQt, I was surprised by the lack of up-to-date PyQt tutorials showing a real project being created... more »
Tweet 0 CommentsSave Tags: c-and-cpp
Why you should learn C and not Scala
A not too serious conversation between me and Jimmy. He wants to be a programmer and later a developer. He started to learn JAVA and he asks me some... more »
iPhone Book Giveaway: Head First iPhone Development – Adjust TextField Hidden by Keyboard
O’Reilly and iPhone Developer Tips are collaborating to give away a free electronic copy of Head First iPhone Development each Friday in November.... more »
Tweet 2 CommentsSave Tags: apple, c-and-cpp, mobile, other languages
C++ is an extension and superset of C and Simula67
Stroustrup an admirer of Simula67 and a strong suppoter of C, wanted to combine the best of both the languages and create a more powerful language... more »
Tweet 0 CommentsSave Tags: c-and-cpp, opinion
How to implement STACK using INHERITANCE in C++?
Have you prepared C++ for your technical interview, for your C++ exam, for your Data Structures exam or for any programming event of the tech fest in... more »
Tweet 2 CommentsSave Tags: c-and-cpp, how-to, methodology, opinion
x86 Assembly for C Programmers 1
I’m writing a series of tutorials on x86 assembly for C programmers who are already familiar with many of the basics of programming and computing. The... more »
Tweet 0 CommentsSave Tags: c-and-cpp
10 Rules for Operator Overloading in C++
So, you all know operator overloading in C++. Although it looks simple to redefine the operators in operator overloading, there are certain... more »
Tweet 2 CommentsSave Tags: c-and-cpp, methodology, opinion, trends
Irrlicht Game Engine
Cool 3D game engine.
Tweet 0 CommentsSave Tags: c-and-cpp, games, open source, reviews
Hidden costs of c++
As a game developer, I’m concerned with performance. Yes, we’re living in next-gen land, and there’s a lot of performance – but then somebody comes... more »
Tweet 0 CommentsSave Tags: c-and-cpp
What is the concept of Object Slicing in C++?
Let's discuss how object is sliced in C++?
Tweet 1 CommentsSave Tags: c-and-cpp, methodology, opinion
The C++ bashing season is back
It seems there is a lot of dislike and hate for C++ out there. This isn’t new - it has always been like this. But lately this issue comes more into... more »
Tweet 1 CommentsSave Tags: c-and-cpp, opinion
C++ in Coders at Work
One of the topics I asked most of my Coders at Work interviewees about was C++. I am not an expert, or even a competent C++ programmer and recognize... more »
Tweet 8 CommentsSave Tags: c-and-cpp
iPhone: Killer Xcode Tips and Tricks - Tips 1 to 10
Shortcuts, code completion, key bindings, the list goes on...If you work in Xcode, you owe it to yourself to check out some of the tips and tricks to... more »
Coding Best Practices for C – Part – 2
Coding standards for C, C, C coding standards.
Tweet 0 CommentsSave Tags: c-and-cpp
INHERITANCE vs COMPOSITION in C++
Inheritance and composition are the two most common mechanisms for software reuse. However, there exist some differences between the two and when to... more »
Tweet 0 CommentsSave Tags: c-and-cpp, opinion, reviews
Coding Best Practices for C - Part - 1
This is a description of how one should do coding.Its a very good article for a beginner as well as professional.
Tweet 0 CommentsSave Tags: c-and-cpp
What is the concept of Composition in C++?
In object oriented language, there are two forms of relationships that can exist between the objects of different classes. The two type type of... more »
Tweet 2 CommentsSave Tags: c-and-cpp, methodology, opinion
What is the concept of Virtual Destructor in C++?
Every one can confidently explain the concept of Construtors and Destructors in C++. What is Virtual Constructor and Virtual Destructor? The people... more »
Tweet 2 CommentsSave Tags: c-and-cpp, methodology, opinion