Showing posts with label write a program to accept the marks for 3 subject of a student and calculate the total marks and percentage. Show all posts
Showing posts with label write a program to accept the marks for 3 subject of a student and calculate the total marks and percentage. Show all posts

/* write a program to accept the marks for 3 subject of a student and calculate the total marks and percentage*/




/* write a program to accept the marks for 3 subject of a student and calculate the total marks and percentage*/

#include<stdio.h>

#include<conio.h>

main()

{

            int m,p,c;

            float Total ,per;

            printf("\n Enter marks of maths , physics, chemistry : );

            scanf("%d%d%d",&m,&p,&c );

            Total = m+p+c;

            percentage=total/300*100;

            printf("\n Total marks of the student is =%f ",Total);

            printf("\n  Total percentage of the student is =%f % ",per);

            getch();

}


*/output

Enter marks of maths , physics, chemistry :78,55,80

Total marks of the student is =210

Total percentage of the student is =70 %

*/                                                            

                                                                😊😉😮

                                                                      











                pe

c program, Advance coding, c++ program, simple program, Advance language

online quiz Application project page MCA final year project

  Here we making a quiz application ppt presentation for college project so that our project idea will like to our professor and teacher  fi...