#include int main() No related posts. Related posts brought to you by Yet Another Related Posts Plugin.
#include
{
printf(“ceil examplesn”);
printf(“The value %f is %fn”, 5.1 ,ceil(5.1));
printf(“The value %f is %fn”, 4.9 ,ceil(4.9));
return 0;
}
























