Write a program to read the marks of 50 students in a class and display the following:
1.average mark obtained by each student. 2.print the roll number and average marks of the students whose average mark is above 80. 3.print the roll number and average marks of the students whose average mark is below 40.
- 12130 Views
- 1 Answers
1 Answers
-
-
- 01 Apr
- 0 Comment
-
- Can someone explain the concept of pre and post increment in C?
- What is the difference between return 0 and return 1?
- C programming Program to print the Fibonacci series up to n numbers.
- What is C language?
- What is structured programming?
- What are storage classes in C language?
- What is difference between C C++ and Java?
- What are preprocessor directives in c language?
- What is C used for? Explain your answer
- Лучшие игры 3d на Андроид
Practice Mock Test
c programming
{br /float sum=0;br /for(int count=0;count<10;count++)br /sum+=marks[count];br /return sum/10;br /}