Login
Remember
Register
Ask a Question
Difference between CEIL and FLOOR functions?
0
votes
asked
Aug 22, 2024
in
Software Defined Networking
by
rajeshsharma
Difference between CEIL and FLOOR functions?
ceil
floor
functions
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 22, 2024
by
rajeshsharma
The ceil function returns the smallest integer greater than/equal to the argument whereas the floor returns the greatest integer less than/equal to the argument.
For example : ceil(4.4) returns 5 whereas floor(4.4) returns 4.
...