Hello

Is there any function in visual c++ MFC like round().
suppose i want to round

1.33 = 1
1.67 = 2

Not specific to MFC. Just add .5 and take the integer part

int main()
{
    float f = 1.67F;
    f += 0.5F;
    f = float((int)f);
    std::cout << f << '\n';
}
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.