Contact: aviboots(AT)netvision.net.il
41,656 questions
54,319 answers
573 users
#include <stdio.h> #include <math.h> int main(void) { double number = 243; int N = 5; double nth_root = pow(number, 1.0 / N); printf("%.2f\n", nth_root); return 0; } /* run: 3.00 */