-
Notifications
You must be signed in to change notification settings - Fork 4.4k
docs: add C++ fpclassify() documentation #8019
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
Conversation
Added comprehensive documentation for the fpclassify() math function. Includes: - Description and syntax - Return value details (FP_INFINITE, FP_NAN, FP_ZERO, FP_SUBNORMAL, FP_NORMAL) - Example with multiple classifications - Runnable codebyte example Closes Codecademy#7990
mamtawardhani
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.
Looks good for a second review! 🚀
|
@mamtawardhani Thanks for the approval! I've completed all the checklist items and made the necessary corrections based on feedback. The fpclassify() documentation is now fully formatted and ready. Awaiting the second reviewer for final approval and merge. Let me know if any additional changes are needed! |
Sriparno08
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.
Looks good, @Priyanshjain10!
|
👋 @Priyanshjain10 🎉 Your contribution(s) can be seen here: https://www.codecademy.com/resources/docs/cpp/math-functions/fpclassify Please note it may take a little while for changes to become visible. |
Added comprehensive documentation for the C++
fpclassify()math function.Description
This PR adds a new term entry for
fpclassify()under the C++ math-functions concept, providing complete documentation including syntax, parameters, return values, and examples.What's Included
Type of Change
Checklist
Closes #7990