nikolas_serafini

Lista 8 - Exercício 5

Aug 11th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.10 KB | None | 0 0
  1. void showVector(int *vet, int quant) {
  2.     int i = 0;
  3.     while(i++ < quant)
  4.         printf("%d\n",*vet++);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment