Advertisement
Guest User

Untitled

a guest
Nov 12th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include "pch.h"
  2. #include <iostream>
  3. #define panda 10
  4.  
  5. int main()
  6. {
  7.  
  8. int tab[panda];
  9. int i;
  10. for (i = 0 < panda; i++;); {
  11.  
  12. scanf_s("%d", i, tab[i]);
  13.  
  14.  
  15. printf("Element tablicy nr %d ma wartosc %d", i, tab[i]);
  16. }
  17.  
  18. return 0;
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement