Conversation
Hacktoberfest 2020 - Implement C algorithms or data structures, fix existing ones and more! TheAlgorithms#633
Panquesito7
left a comment
There was a problem hiding this comment.
This code is not up to the repository standards.
Please read them carefully and follow them.
Also see the typical structure of a program for good code and documentation. 🙂
|
|
||
| #include <bits/stdc++.h> | ||
|
|
||
| using namespace std; |
There was a problem hiding this comment.
A C program cannot use the std namespace (it's only for C++).
The appropriate library should be the stdio.h, and using printf and scanf.
| @@ -0,0 +1,62 @@ | |||
|
|
|||
| #include <bits/stdc++.h> | |||
There was a problem hiding this comment.
This library is discouraged, consider using the necessary libraries separately.
| return finalvalue; | ||
| } | ||
|
|
||
| int main() |
There was a problem hiding this comment.
| int main() | |
| /** | |
| * @brief Main function | |
| * @returns 0 on exit | |
| */ | |
| int main() |
|
This pull request has been automatically marked as abandoned because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
|
Please ping one of the maintainers once you commit the changes requested or make improvements on the code. If this is not the case and you need some help, feel free to ask for help in our Gitter channel or our Discord server. Thank you for your contributions! |
Hacktoberfest 2020 - Implement C algorithms or data structures, fix existing ones and more! #633
Description of Change
References
Checklist
Notes: