C Programming Language: Checking Number of Subjects Chosen for a Course

Click For Summary
The discussion revolves around creating a C program that checks the number of subjects a student has selected for a course, ensuring it meets the minimum requirement of six subjects. The program should run after the student updates their subject selection and display a message if the count is below six. It must include a function to count the subjects. The starting point for the code is provided, beginning with a basic `int main(void) { return 0; }` structure, which serves as the foundation for further development. Key points include the need for input handling, subject counting logic, and appropriate messaging based on the count.
joe88
Messages
3
Reaction score
0
my friend i fail to perform this simple task can you please direct me how to approach a simple question like this
the quetion said "a registrar set up the curriculum for the term . One course may have up to 10 subject . Students must select a minimum of 6 subjects from a particular course .Once a student registers for the term , the billing system is notified so that the student may be billed .Student may use the system to add or drop subjects for the period of time of registration.\
write a C program that will check the number of subject s the student has chosen for a course .This program will run after the student has updated the subject selection. If the number of subject is less than 6 then an appropriate message should be displayed on the screen . The program should include a function that will count the number of subjects.
 
Technology news on Phys.org
you start from something that compiles:
Code:
int main (void) {
  return 0;
}
and then add code as necessary.
 
Learn If you want to write code for Python Machine learning, AI Statistics/data analysis Scientific research Web application servers Some microcontrollers JavaScript/Node JS/TypeScript Web sites Web application servers C# Games (Unity) Consumer applications (Windows) Business applications C++ Games (Unreal Engine) Operating systems, device drivers Microcontrollers/embedded systems Consumer applications (Linux) Some more tips: Do not learn C++ (or any other dialect of C) as a...

Similar threads

  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 12 ·
Replies
12
Views
2K
  • Sticky
  • · Replies 13 ·
Replies
13
Views
7K
Replies
6
Views
3K
  • · Replies 11 ·
Replies
11
Views
3K
Replies
2
Views
3K
  • · Replies 10 ·
Replies
10
Views
3K
  • · Replies 4 ·
Replies
4
Views
2K
  • · Replies 6 ·
Replies
6
Views
2K