Guest User

Untitled

a guest
Oct 15th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. // This is the right way of reference an extern array
  2. extern char array[];
  3.  
  4. int main()
  5. {
  6. array[0] = 0;
  7. array[1] = 1;
  8. }
Add Comment
Please, Sign In to add comment