Percentage Calculator of Six Subjects by Mohit Purohit C O D E Copy Code /* Creator - Mohit Purohit Date - 07 Jan. 2022 Time - 11:31 P.M. */ #include<stdio.h> #include<conio.h> void main() { clrscr (); int Hindi, English, Mathematics, Science, Sanskrit, SocialStudies, Total=480 ; float sum, per; printf("Enter the marks of Hindi : "); scanf("%d",&Hindi); printf("Enter the marks of English : "); scanf("%d",&English); printf("Enter the marks of Mathematics : "); scanf("%d",& Mathematics); printf("Enter the marks of Science : "); ...