fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. byte array[4] = { 0xC3,0x02,0x00,0x00 };
  5. printf("Result : %d\n",(lol[0]) | (lol[1]) <<8 |(lol[2]) <<16 | (lol[3]) <<24 );
  6. return 0;
  7. }
  8.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
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 };
       ^
stdout
Standard output is empty