prog.c: In function 'main':
prog.c:4:2: error: unknown type name 'byte'
byte array[4] = { 0xC3,0x02,0x00,0x00 };
^
prog.c:5:26: error: 'lol' undeclared (first use in this function)
printf("Result : %d\n",(lol[0]) | (lol[1]) <<8 |(lol[2]) <<16 | (lol[3]) <<24 );
^
prog.c:5:26: note: each undeclared identifier is reported only once for each function it appears in
prog.c:4:7: warning: unused variable 'array' [-Wunused-variable]
byte array[4] = { 0xC3,0x02,0x00,0x00 };
^