The harder the conflict, the more glorious the triumph.

This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Sunday, 26 August 2012

Calculating Grand Total on Discount

#include <stdio.h>#include <conio.h>void main(){                clrscr();                int a, b, c, d, e;                float total, discount, discountAmt, grandTotal;                printf("Enter the 1st amount : ");               ...

Convert Character to ASCII Code

#include <stdio.h>#include <conio.h>void main(){                char a;                clrscr();                printf("Enter a character : ");                scanf("%c",&a);               ...