-
Notifications
You must be signed in to change notification settings - Fork 0
Lecture 2 #2
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
base: master
Are you sure you want to change the base?
Conversation
hell-coder
left a comment
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.
- in future use separate commits for different programs
- see inline comments
| printf("\n"); | ||
| } | ||
| printf("Calculation end\n"); | ||
| } No newline at end of file |
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.
Ex6: Write a C program to print all numbers between 1 to 500 which divided by a number specified by user;
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.
Sorry, I don't understand. I have input variable "divider" as mentioned in exersice that can be specified from main() program. What I did wrong ?
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.
I think it means division without reminder.
e.g. divider=100, then the output should be 100, 200, 300, ....
In the future please clarify the task before.
hell-coder
left a comment
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.
See comments.
| printf("\n"); | ||
| } | ||
| printf("Calculation end\n"); | ||
| } No newline at end of file |
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.
I think it means division without reminder.
e.g. divider=100, then the output should be 100, 200, 300, ....
In the future please clarify the task before.
Add lecture #2