Contact: aviboots(AT)netvision.net.il
38,477 questions
50,141 answers
573 users
#include <stdio.h> #include <math.h> int main() { double x = 5.0; printf("x^2: %.2f\n", pow(x, 2)); return 0; } /* run: x^2: 25.00 */