av said:
i show you the way

"reduce instruction size in the paper"
<snip rubbish code>
The only things you are showing are your ineptitude as a programmer and
how not to write code. Even with gcc in its default mode I get:
markg@brenda:~$ gcc t.c
t.c:1:18: error: winb.h: No such file or directory
t.c: In function ‘resize’:
t.c:11: error: ‘R’ undeclared (first use in this function)
t.c:11: error: (Each undeclared identifier is reported only once
t.c:11: error: for each function it appears in.)
t.c:11: error: syntax error before numeric constant
t.c:13: error: syntax error before ‘w’
t.c: In function ‘trivia’:
t.c:17: error: ‘R’ undeclared (first use in this function)
t.c:17: error: syntax error before ‘text’
t.c: At top level:
t.c:23: error: syntax error before ‘&’ token
t.c: In function ‘load_data’:
t.c:27: error: ‘in’ undeclared (first use in this function)
t.c:27: error: ‘SEEK_SET’ undeclared (first use in this function)
t.c:28: error: ‘R’ undeclared (first use in this function)
t.c:28: error: syntax error before numeric constant
t.c:30: error: syntax error before ‘;’ token
t.c:34: error: break statement not within loop or switch
t.c:35: error: ‘G’ undeclared (first use in this function)
t.c:35: error: syntax error before ‘label’
t.c: At top level:
t.c:37: error: ‘i’ undeclared here (not in a function)
t.c:37: error: ‘in’ undeclared here (not in a function)
t.c:37: warning: data definition has no type or storage class
t.c:38: error: syntax error before ‘if’
t.c:42: error: redefinition of ‘num_items’
t.c:4: error: previous definition of ‘num_items’ was here
t.c:42: warning: data definition has no type or storage class
t.c:43: error: syntax error before ‘i’
t.c:43: warning: data definition has no type or storage class
t.c: In function ‘main’:
t.c:50: error: ‘istream’ undeclared (first use in this function)
t.c:50: error: syntax error before ‘triviatxt’
t.c:52: error: ‘triviatxt’ undeclared (first use in this function)
t.c:53: error: ‘R’ undeclared (first use in this function)
t.c:53: error: syntax error before numeric constant
t.c:57: error: syntax error before numeric constant
t.c:60: error: syntax error before ‘;’ token
t.c:60: error: syntax error before ‘)’ token
markg@brenda:~$
I also spotted you still have a number of stupidities that have already
been pointed out to you.