Keith_S_Thompson

Test case for https://stackoverflow.com/q/44266715/827263

May 30th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.18 KB | None | 0 0
  1. #include <stdio.h>
  2. #include <math.h>
  3. int main(void) {
  4.     for (int i = 5; i <= 15; i += 5) {
  5.         int i_2 = pow(i, 2);
  6.         printf("pow(%d, 2) = %d\n", i, i_2);
  7.     }
  8. }
Add Comment
Please, Sign In to add comment