Make a C program that would ask the user for integers N and E. N would determine the number of integers to be displayed and E would determine the exponent of the number series starting from 1. Display the first N numbers raise to E.
Note: you can use the pow() function under the math.h library.
For example, if the user inputs N as 3 and E as 2 you will display 3 values,
1^2 2^2 3^2 which is equal to 1 4 9
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here