DOS Application

  • Thread starter Thread starter Mike Mayer
  • Start date Start date
M

Mike Mayer

I've made an little mathe program, i want that the program
make z.B: x ^ 1/2 (x high 1/2) how could i say that to
the compiler ?

please send an answer !!!
 
Hi Mike
I've made an little mathe program, i want that the program
make z.B: x ^ 1/2 (x high 1/2) how could i say that to
the compiler ?

pow (x, (1.0/2.0));

Best Regards
Walter
 
Back
Top