I am beginner of c .. can someone answer this question ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

I am beginner of c .. can someone answer this question ?

Write a c program to .. You are given two lists of register numbers. One list consists of Register numbers of all the students in a class and other list consists of students who have passed in the End semester exam. Find the list of students who failed in the End semester exam.

14th Jul 2021, 2:24 AM
Shalini R
Shalini R - avatar
1 Answer
+ 1
Take two array one for registration number and other for marks like this Struct{ int register [20]//={"12,45,55,12} int marks[20] //={90,23,67,32,85} }stud[20]; Take inputs from user marks and registration number and check if marks is lower than 33 out of 100 then fail otherwise pass
14th Jul 2021, 3:36 AM
A S Raghuvanshi
A S Raghuvanshi - avatar