Name: Anonymous 2012-01-09 9:26
What programming language has the best, cleanest and most beautiful rounding function?
#include <stdio.h>
int main() {
float num = 5.5;
printf((int) num);
return 0;
}