fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. unsigned char dat[]={0x29,0xae,0x69,0xeb},byte;
  6. int i;
  7. for(i=0;i<sizeof(dat);++i)
  8. {
  9. byte=~((dat[i]<<2)|(dat[i]>>6));
  10. printf("%2X ",byte);
  11. }
  12. return 0;
  13. }
Success #stdin #stdout 0s 2292KB
stdin
Standard input is empty
stdout
5B 45 5A 50