Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- void funkcjat(int a[])
- {
- for (int i = 0; i < 20; i++)
- {
- a[i] = rand() % 100;
- printf("%d\n", a[i]);
- }
- }
- void kolos1()
- {
- int a[20];
- funkcjat(a);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement