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