Advertisement
Guest User

Untitled

a guest
Jun 21st, 2022
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #include <stdlib.h>
  2. #include <stdio.h>
  3.  
  4. int main() {
  5. int w = 5;
  6. struct TEST {
  7. char line[w];
  8. } test[5];
  9.  
  10. test[0].line[0] = 'a';
  11. fprintf(stderr, "%c\n", test[0].line[0]);
  12.  
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement