FastSqrt This library provides a function that calculates square quickly. How to use #include <stdio.h> #include "fsqrt.h" int main() { unsigned int res = fsqrt(144); printf("%d\n", res); // 12 }