Beginner QT Programing Books

QT allows you to write programs that run on multiple operating system. Unless you’ve any commercial intentions you can always use QT to get your small projects or open source projects to work with your C++ programming skills. [Read more...]

C++ Books for Interviews

For freshers C and C++ are the languages which are often selected by interviewer to select the right candidate for their company. If you’re applying to company as fresher or experienced for C++ developer position then you need to prepare accordingly. Level of the test difficult will vary based on your experience, freshers are likely to be tested with code, bugs and definitions. This post is an attempt to give you some pointers for how to prepare for C++ interview. [Read more...]

Developing C/C++ programs under ubuntu

I already covered how to write c++ programs in linux. But in that article, i didn’t mentioned about how to install compilers and stuff. So this post will cover how to install compilers in ubuntu and to write, compile and run program. [Read more...]

Libraries and Namespaces

C++ comes with a number of standard libraries.Some libraries are commercial & limited to perticular compiler while some are included in every compiler.These libraries place their definitions inside namespace.So we’ll discuss what namespace is,but before moving onto namespace let’s clear few things about libraries. [Read more...]

Locale

Sometimes the question is asked to students that “What is locale?” during interviews. Let’s talk about it in this post. [Read more...]

C++: Multiple Source files

It can be inconvenient to write a long program within a single file. When programs grow to hundreds or thousands of lines, breaking them into modular units helps manage the program.This way you can bring modularity in your project. [Read more...]

Visual C++ Express

Developing C++ programs for windows platform can be fun, provided that you’re using the right tool. There are plenty of choices available while starting your journey in windows development using C++. The two most worthy tools are Turbo C++ explorer & Microsoft visual C++ express. [Read more...]

Errors & Exception handling

Every accomplished programmer or developer has been through lot of errors and exceptions while programming. Errors are developers’ birth right. You can’t be better programmer if you don’t know how to deal with them. Every programming language has its own way of dealing with them. The focus of this article is to help you deal with errors that are bound to occur while you develop program. [Read more...]

Wxwidgets

There are plenty of open source toolkits available for GUI design like: Ultimate++, FLTK and QT. But very few can be used effectively such as Wxwidgets. Programming language like Java is very easy to learn and deploy, but there are many problems addressed with it.Mono.net is still in its progressive stage, so there is huge learning curve ahead. [Read more...]

WINBGIm Graphics

Previously, I’ve discussed installation & configuration of Winbgim with Dev-C++ here. As devpaks for Winbgim are released, things are now much better than before. This article is designed to help you create graphics programs using WINBGIm and DEV-C++. [Read more...]