Source code for student lectures timetable in c | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Source code for student lectures timetable in c

please i need help with writing a simple program in c, that when open it will ask the student the day of the week and if the student replies lets say Monday it will display all subjects for Monday and ask if to check for tomorrow, yes should open tomorrow's time table and no should end the program <redacted. No contact information please> thanks

4th Jul 2018, 5:04 PM
FR33MAN
FR33MAN - avatar
2 Answers
+ 3
You need to make a little attempt or you won't learn much. Let's start with overall design: *. It's a quick piece of homework, so stuff practices like scalability, multiple files, and too much modularity. *. What do you need to track your subjects? Hint: A list of sorts. *. How are we going about the UI? Well the assignment said we have a yes/no question. *. Each day has a different roster, yes? So how do we relate that data? Hint: There's multiple ways to do this, but only seven days per week. Now, give my questions a try. Don't be afraid of mistakes, you're learning. Learning already makes you better than most people who are only interested in media hype and celebrities. I'll post some code later, but try so long to answer my questions.
4th Jul 2018, 5:47 PM
non
+ 1
Here's an example code. It's not the exact assignment, but rather improves on it. Feel free to ask questions about anything here: https://code.sololearn.com/ckm2q2xWFML1/?ref=app
5th Jul 2018, 6:43 PM
non