Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.16 KB | None | 0 0
  1. extern "C" int* function()
  2. {
  3.     int* information = new int[10];
  4.     for (int k = 0; k < 10; k++) {
  5.         information[k] = k;
  6.     }
  7.     return information;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement