C++ Program to Print Heart Shape with Happy Valentine’s Day Message inside it

Today’s day is very special for all lovers. So I thought that I should share some programming stuff that show Valentine’s Day feeling. A C++ program is given below which prints heart shape with a Happy Valentine’s Day message inside it. If you want, you can change the message by changing the value of string message. I hope that …

C++ Program to Print Heart Shape with Happy Valentine’s Day Message inside it Read More »

jQuery Touch Application Development: A Powerful Technology For Feature-rich Apps

In today’s scenario, the smartphone is leading ahead of the mobile as well as desktop/laptop. Owing to which, there is the huge demand for feature-rich applications that are not only functional, but also seem to have a great interface. Numerous of application development industries are working to have effective, seamless, alluring, functional and innovative application. …

jQuery Touch Application Development: A Powerful Technology For Feature-rich Apps Read More »

How to Swap Two Numbers Without Using Temporary Variable or Arithmetic Operators?

You have done swapping of two numbers using temporary variable or by using arithmetic operators. It can be done in following way. Lets take two numbers a=5 and b=7. Using Temporary Variable temp=a;            //temp becomes 5 a=b;                 //a becomes 7 b=temp;            //b becomes 5 Also Read: C++ program to swap two numbers using pointers Also Read: C++ …

How to Swap Two Numbers Without Using Temporary Variable or Arithmetic Operators? Read More »

C++ Program to Print Numbers From 1 to n Without Using Loops, Recursion or Goto Statement

You may have made program to print numbers from 1 to n using loops, recursion or goto statement. But have you ever thought about doing this without help of loops, recursion or goto? It can be done without using such things as explained in below program.Also Read: C program to find factorial of any number using …

C++ Program to Print Numbers From 1 to n Without Using Loops, Recursion or Goto Statement Read More »