How to Create Marksheet in C
![]() |
First, we'll take the marks of five subjects from the user to generate the mark sheet.
These marks will be stored in a variable of the float data type.
After that, we'll apply the formula to calculate the percentage and design a template for mark sheet.
Marksheet in C
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<stdio.h> | |
void main() | |
{ | |
float sub1 , sub2, sub3, sub4, sub5; //declerations of variables | |
printf("Enter the Marks of English"); | |
scanf("%f", &sub1); | |
printf("Enter the Marks of Urdu"); | |
scanf("%f", &sub2); | |
printf("Enter the Marks of Computer"); | |
scanf("%f", &sub3); | |
printf("Enter the Marks of Math"); | |
scanf("%f", &sub4); | |
printf("Enter the Marks of P.S.T"); | |
scanf("%f", &sub5); | |
float total = sub1 + sub2 + sub3 + sub4 + sub5; // calculating the total marks of subject | |
float percentage = ( ( total / 500 ) * 100 ); // calculating the overall percentage | |
printf("Subject Max.Marks Obt.Marks Obt.Marks\n"); | |
printf("-----------------------------------------------------\n"); | |
printf("English 100 %f \n",sub1); | |
printf("Urdu 100 %f \n",sub2); | |
printf("Computer 100 %f \n",sub3); | |
printf("Math 100 %f \n",sub4); | |
printf("P.S.T 100 %f \n",sub5); | |
printf("-----------------------------------------------------\n"); | |
printf(" Total Marks %f | Percentage %f %% \n", total, percentage); | |
} |
Comments
Post a Comment