Hi,
I need to round a number. I tried using round from math.h but it's returning weird values
Code:
 double num1 = 0;
num1 = round(2.67);
 printf("col = %f\n", num1);
I am getting -524288.000000 ?????

Anybody can help with this
Amish