Categories

ceil function examples

#include
#include

int main()
{
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;
}

No related posts.

Related posts brought to you by Yet Another Related Posts Plugin.

You must be logged in to post a comment.