Question: Need Help to write this code in C Program Pow- raises a number to a power and displays it on the screen. pow BASE EXPONENT
Need Help to write this code in C Program


Pow- raises a number to a power and displays it on the screen. pow BASE EXPONENT Accepts two values, a base value and an exponent, when run from the command-line. pow then raises the base to the exponent and displays to the screen the result. Displays the synopsis message if an incorrect number of command line arguments are supplied. Does not use any C++ specific code. Does not prompt the user in any way. Does not perform input validation. Does not use scanf, uses command-line arguments to get input. To compile the code: gcc pow.c -o pow or gcc -Im pow.c -o pow Use c-string C functions from the C library. If there isn't an explicit requirement, you don't have to do it. [stalica@trig ~]$ gcc -lm pow.c -opow [stalica0trig ~]$ pow 3 2 9.000000 [stalica@trig ~]$ pow 1.5 2 2.250000 [stalica@trig ~]$ gcc -lm pow.c -opow [stalica@trig ~]$ pow 3 2 9.000000 [stalica@trig ~]$ pow 1.5 2 2.250000 [stalica@trig ~]$ pow 2 -2 0.250000 [stalica@trig ~]$ pow 5 USAGE: pow BASE EXP [stalica@trig ~]$
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
