the check a stander marks details in using a uml diagram
http://freeminiproject.blogspot.com/2011/10/student-mark-analysis-system-coding.html
student
sorce code for student mark list usig array
This is a statement with a question mark?
can you give the mark list of sslc 2009 mark list of number 197563?
Create a data structure to store the details for each student: typedef struct student_t { char name[30]; unsigned age; unsigned mark; } student; Establish an array to store the student data: size_t max = 100; // replace 100 with the actual number of students student students[max]; Use a loop to enter the data: for (size_t i=0; i<max; ++i) { printf ("Student name: "); scanf ("%s", students[i].name); printf ("Student age: "); scanf ("%u", students[i].age); printf ("Student mark: "); scanf ("%u", students[i].mark); } Calculate and display the average mark: unsigned sum = 0; for (size_t i=0; i<max; ++i) sum += student[i].mark; printf ("Average mark: %d\n", sum / max_students);
write a c program to display marks,total,average,grade using union
you can get your mark list from your school
No, but Mark admires Eric and loves him.
panoor higher senodery school
No, a teacher cannot mark a student absent as a punishment. Absences should be recorded accurately based on the student's attendance, not as a form of discipline.
#include<stdio.h> #include<conio.h> void main() { char name[100][100]; //array of strings int roll[100],English[100],maths[100],tamil[… clrscr(); printf("Enter the number of students"); scanf("%d",&n); for(i=1;i<=n;i++) { printf("Enter the name of student no %d :",i); scanf("%s",name[i]); printf("Enter the roll number of student %s :",name[i]); scanf("%d",&roll[i]); printf("Enter the English mark of student %s :",name[i]); scanf("%d",&English[i]); printf("Enter the maths mark of student %s :",name[i]); scanf("%d",&tamil[i]); printf("Enter the science mark of student %s :",name[i]); scanf("%d",&science[i]); printf("Enter the maths mark of student %s :",name[i]); scanf("%d",&maths[i]); clrscr(); } for(i=1;i<=n;i++) { printf("\nName: %s \nRoll No: %d \n",name[i],roll[i]); printf("English :%d \nTamil:%d \nscience: %d \nmaths:%d",English[i],tamil[i],science[… } getch(); }