-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
improve starting point of program #807
base: main
Are you sure you want to change the base?
Conversation
I'm slightly in favor of that change. armstrong-numbers seems to be the first exercise for many students, let's keep the entry barriers low. |
I agree. I don't mind the addition of the skeleton function, but the includes aren't necessary and I think they should be removed. |
#include <stdio.h> | ||
#include <math.h> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#include <stdio.h> | |
#include <math.h> |
Is hello-world no longer the first exercise? If this is not obvious, should there be some update to the docs? Sorry last time I mentored was pre-v3! |
it will help beginner c programmers to know where to start writing code.