Posts

Showing posts from April, 2015

INCOME TAX CALCULATOR USING C++

Image
This post is about a very basic income tax calculator application. Income tax calculator is an open ended application developed by object oriented programming in  C++. This application calculates income tax for individual salaried person by getting the age as first input and then accordingly calculates the income tax. This application is based on the details given on this link:  http://www.itsallaboutmoney.com/did-you-know/learn-how-to-calculate-your-income-tax Income tax calculator welcome screen

Saving The Farewell

Image
Saving the Farewell              The atmosphere was dense, filled with a creepy silence and deep mourning. Out of 1000s of people gathered, everyone was sad, broken and some were even depressed or had just been through a nervous breakdown. The event had been disturbing, and it came as a blow in a bombshell to the entire India.             The Net Neutrality had passed away or to be frank, had been murdered by the greedy telecom operators of India. The event as said before, left a blow over the people all over the nation, and attacked the citizens both mentally and emotionally. Everyone was lost or broken to some extent, for their very own: the Net Neutrality had been brutally murdered and it took away their soul mate- the Internet with it, so some extent.                That day, people from all over the nation had gathered at the graveyard for a condolence speech after 1 month of the tragic incident. Everyone had something to say, something to share and

How to make an option available in NEW of context menu

Image
In this article of tips/tricks  I am going to show you how you can add/ remove some items from the "NEW" of context menu. Let me show you (in case if you don't know ) what is a context menu. context

The News

Image
The News Avinash’s life had been on the happiest curve ever since he had met Ankita. A business seminar was all that it took to introduce them to each other. Then a series of events took place, one thing led to another, leading to their first kiss and eventually a happy married life. Both of them were married for almost 4 years then and everyday passed like another  fairy tale . But that particular day had been worth a silver memory. That day brought The news that changed his life forever! Ankita called in to inform him that they were both soon to be the parents to a baby girl ! Well yeah, Ankita had been pregnant for 3 months and sadly Avinash had his official commitments in the form of various meetings, seminars and trainings that had forced him to leave Ankita with their budding child at their home in Delhi and had since been away at Bangalore for almost 2 months then.

Decision Making and Branching - IF-ELSE C Programs

This article is about the Programs of Decision making and branching (if else statements) Simple If statement program //C program to print even numbers up to the user entered limit #include<stdio.h> #include<conio.h> void main () { int i = 1 ,n; clrscr(); printf( "Enter a number up to which u want the program to print even numbers" ); scanf( "%d',&n); label: /* label for goto statement /* (here looping can be used but its not yet covered in the topics if ( (i % 2 == 0 ) && (i <= n) ) { printf( "%d" ,i); i ++ ; goto label; } getch(); } Simple If-else Statement Program //C program for simple if-else statement #include<stdio.h> #include<conio.h> void main () { int n; clrscr(); printf( " \t\t --------C PROGRAM TO CHECK WEATHER THE NUMBER IS EVEN