Skip to content
EMPS intranet

Back to top
Hi!   Hi!           Start main()

Try stepping through the code


  Value and type of last evaluated expression: Address of array element: Address of array elementx:  (none)

Your browser does not support the canvas element which will make some the features unavailable.

If you are using Internet Explorer within the University of Exeter try going to the Settings menu (probably the gear shape at the top right of this page), selecting "Compatibility View settings", unchecking "Display intranet sites in Compatibility View" and reloading this page.

Code

 Header...
// // Demonstrate function prototypes // double mypow (double base,int exponent); void printexp (double x,int j);
int main(){
  ...
» double base=5.3; » int n=2; » printexp(base, n); » return 0;
} // // Print out x to the power j, warning if x and j are invalid // void printexp(double base,int j){
  ...
» if (base==0.0&&j<0) { » printf("Invalid values to printexp\n"); » return ; } » printf("%f to the power %d is %f\n", base, j, mypow(base, j));
} // // Return base to the power of exponent. // If base == zero and exponent < zero, return zero // double mypow(double base,int exponent){
  ...
» double result=1.0; » if (base==0.0&&exponent<0) return 0.0; » while (exponent>0) { » result*=base; » --exponent; } » while (exponent<0) { » result/=base; » ++exponent; } » return result;
}

Data

mypow()

base (double)   result (double)
128   136
5.3
  
1
exponent (int)
176
2

printexp()

base (double)   j (int)
192   224
5.3
  
2

main()

n (int)   base (double)
260   264
2
  
5.3

Memory

mypow()

128
129
130
131
132
133
134
135
base = 5.3
136
137
138
139
140
141
142
143
result = 1
176
177
178
179
exponent = 2

printexp()

192
193
194
195
196
197
198
199
base = 5.3
224
225
226
227
j = 2

main()

260
261
262
263
n = 2
264
265
266
267
268
269
270
271
base = 5.3

NB: the actual memory address of each variable is the
address shown plus 4293854872 (0xFFEF0698).

Show Advanced options

.
Show output (Before looking at the output, work out what you think it put should be and see if you are right.)

Output

5.300000 to the power 2 is 28.090000
                                                                                                                                                                                                                                                                       

Validate   Link-check © Copyright & disclaimer Share
Back to top