Posted on
March 20th, 2011 1 Comment
TDD is a modern programming practice C developers need to know. It’s a different way to program—unit tests are written in a tight feedback loop with the production code, assuring your code does what you think. You get valuable feedback every few minutes. You find mistakes before they become bugs. You get early warning of design problems....
Read More |
Make a Comment
Posted on
March 1st, 2011 0 Comments
Now in the 4th edition, Cracking the Coding Interview gives you the interview preparation you need to get the top software developer jobs. This book provides:
150 Programming Interview Questions and Solutions: From binary trees to binary search, this list of 150 questions includes the most common and most useful questions in data structures, algorithms,...
Read More |
Make a Comment
Posted on
February 21st, 2011 0 Comments
The iPhone is the hottest gadget of our generation, and much of its success has been fueled by the App Store, Apple’s online marketplace for iPhone applications. Over 1 billion apps have been downloaded in the 9 months the App Store has been open, ranging from the simplest games to the most complex business apps. Everyone has an idea for the next best-selling...
Read More |
Make a Comment
Posted on
February 16th, 2011 0 Comments
People consider computer programming a little tiresome but some find it more enjoyable. Every programmer has to keep up with the latest trends coming in the programming languages. Most of the programmers start programming in C as it is the most commonly used programming language for writing operating systems and applications.
If you are reading this article,...
Read More |
Make a Comment
Posted on
February 4th, 2011 0 Comments
Here is a list of programming contests which you can participate and win prizes. Most of them are annual competitions but few are continuous and you can enter at any time. You can use C, C++ or C# .NET or any other programming language in these contests.
These contests offer young, talented programmers the opportunity to measure capabilities and to compare themselves...
Read More |
Make a Comment
Posted on
October 6th, 2010 0 Comments
The question that novice programmers often ask is, How to improve programming skills? As a programmer I used different ways to improve my programming skills, like reading/writing code, working with experienced programmers and reading blogs and websites. I have listed few of the points here which in my opinion will be quite useful for novice programmers.
Practice,...
Read More |
Make a Comment
Posted on
July 12th, 2010 0 Comments
There are always few little known or hidden features in each programming language. AT StackOverflow.com someone started a series of posts “Hidden features of” programming languages. The Hidden Features series is great for people who are new to a certain language.
I have collected few of the features of both C and C++ here.
Like the ternary operator;...
Read More |
Make a Comment
Posted on
July 11th, 2010 1 Comment
I have compiled a list of repeatedly asking C++ interview questions here. Some of them are very important C++ questions asked by employers like Microsoft, Adobe and IBM.
How do you check whether a linked list is circular?
How do you decide which integer type to use?
How do you differentiate between a constructor and destructor?
How do you differentiate between...
Read More |
Make a Comment