C/C++: How to round up a number
#include intergerVariable = ceil (floatVariable);
To compile with math.h library you MUST include the -lm flag.
gcc -lm main.c
#include intergerVariable = ceil (floatVariable);
To compile with math.h library you MUST include the -lm flag.
gcc -lm main.c