Contact: aviboots(AT)netvision.net.il
39,888 questions
51,815 answers
573 users
#include <stdio.h> #include <math.h> int main(int argc, char **argv) { printf("hypot(1, 1) = %f\n", hypot(1, 1)); printf("hypot(1, 1) = %f\n", sqrt(sqrt(1) + sqrt(1))); return 0; } /* run: hypot(1, 1) = 1.414214 hypot(1, 1) = 1.414214 */