#include float print1(void) { float x; printf("Enter the value of x: "); scanf("%f",&x); return x; } int print2(void) { int n; printf("Enter the value of n: "); scanf("%d",&n); return n; } float expon(float x, int m) { int j; float num = 1; for(j=0;j