Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- using namespace std;
- void funckija(int * niza, int n, int x) {
- for(int i = 0; i < n; i++) {
- *(niza + i) = x;
- }
- }
- int main() {
- int n;
- cin >> n;
- int niza[n];
- for(int i = 0 ; i< n; i++) {
- cin >> niza[i];
- }
- int x;
- cin >> x;
- funckija(niza, n, x);
- for(int i = 0; i < n; i++) {
- cout << niza[i] << " ";
- }
- return 0;
- }
- /*
- 5
- 1 2 3 4 5
- 5
- **/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement