/* 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

1 comment:

This Blog helps you to learn basics to high level programming coding and practicals.
conceptual understanding

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