misiek06

Untitled

Dec 5th, 2018
598
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. a)
  2. void clearTab(float *start, float *end)
  3. {
  4. do
  5. {
  6. *start = 0;
  7. start++;
  8. }
  9. while(start <= end);
  10. }
  11. b)
  12. void setAvg(float *a, float *b)
  13. {
  14. *a = (*a + *b)/2;
  15. *b = *a;
  16. }
Add Comment
Please, Sign In to add comment