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.

Friday, 31 August 2012

Calculating Percentage & Grade

#include <stdio.h>#include <conio.h>void main(){        int sub1, sub2, sub3, sub4, sub5;        float total, percentage;        clrscr();        printf("\n\n\n***Program to Calculate Grade***\n\n\n");        printf("Enter the obtained marks of Subject 1 : ");        scanf("%d",&sub1);       ...

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);               ...

Wednesday, 22 August 2012

Greatest value between Three Numbers

#include <stdio.h>#include <conio.h>void main(){                int a,b,c;                clrscr();                printf("Enter the A number : ");                scanf("%d",&a);               ...