December 15, 2011

0 Comments

Operators in C Programming

In C programming language, one can find various operators for performing different kind of operations. There are operators for arithmetic functions, assignment, logical functions, and others. Operators in C language work on constants and variables, though few are restricted for certain works. Most of the operators are binary; few operators are unary and that takes [...]

Continue reading...
Value of PMP certification

November 3, 2011

0 Comments

What is PMP Certification?

Project Management Professional, commonly known as PMP, is a certification given to those who successfully pass an exam conducted by Project Management Institute (PMI). Who Offers PMP Certification? Professional development program is offered by PMI, which is designed based on Project Management Body of Knowledge Guide (PMBOK Guide). The guide contains many proven practices related [...]

Continue reading...
advanced c/c++ programs

September 14, 2011

0 Comments

Cool C Programs: Sorting Dates in DD MM YYYY Format

Here’s one of the cool C Programs that you won’t find on most websites… It’s a C Program to take any five dates in dd\mm\yyy format, and arrange them in ascending order. Steps to Develop the Program 1. Dates are entered as strings. 2. Convert the dates into integer values. 3. Check for validation of [...]

Continue reading...

August 25, 2011

0 Comments

Heap Sort in C: Basics & Code Snippet

heap sort in c

Few of the sorting techniques like the bubble sort, selection or the insertion sort are good enough for sorting small number of element, while heap sort is used to large number of elements, in a faster way. It’s simple as well, but all it consumes is the additional memory. Before we get into heap sort [...]

Continue reading...

July 29, 2011

0 Comments

Sun CEO Explicitly Endorses Java’s use in Android

oracle vs java vs google

Android platform developed by Google has begun a new era, and it’s sad to hear that it has copied most of the java code directly. Oracle has caught Google red handed and asked Google to repay billions for the damage caused by it. When Android was launched initially, Jonathan Schwartz was the CEO of Sun, [...]

Continue reading...