feat: Adding fibonacci triangle program#723
feat: Adding fibonacci triangle program#723sumeet-shinde wants to merge 19 commits intoTheAlgorithms:masterfrom
Conversation
This comment has been minimized.
This comment has been minimized.
Some changes...
|
Please fix the warning reported by LGTM. |
|
I have fixed it... |
|
It has passed all checks |
misc/fibonacci_triangle.c
Outdated
| #include<stdlib.h> | ||
| #include<assert.h> | ||
| /** | ||
| * funtion to print fibonacci series in traingle format |
There was a problem hiding this comment.
Missing parameter n documentation.
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
|
Changes updated |
Panquesito7
left a comment
There was a problem hiding this comment.
Please enable GitHub Actions in your repository of this fork in this link: https://github.com/sumeet-shinde/C/actions
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
f4d49ec to
b8a00ea
Compare
b8a00ea to
d983f99
Compare
|
changes updated |
Co-authored-by: David Leal <halfpacho@gmail.com>
1401ff5 to
2ac8a2a
Compare
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
95de243 to
02a3ea3
Compare
| #include <stdio.h> /// for standard Input Output | ||
| #include <stdlib.h> /// for standard library functions | ||
| #include <assert.h> /// for assert functions | ||
| #include <stdbool.h> /// for boolean functions |
There was a problem hiding this comment.
| #include <stdbool.h> /// for boolean functions | |
| #include <stdbool.h> /// for boolean functions | |
|
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! |
Program to print Fibonacci series in triangle
References
Checklist
Notes: