How to Create Marksheet in C


Markheet in C

Here's an example, how you can create a mark sheet in C language.

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


#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);
}
view raw marksheet.c hosted with ❤ by GitHub
Related:



Comments

Popular posts from this blog

Pseudocode to Check, Number is Odd or Even

C Program to Calculate Acceleration