fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main(void) {
  4. // your code goes here
  5. int a=0;
  6. memset(&a,1,sizeof(int));
  7. printf("%d\n",a);
  8. a=0x01010101;
  9. printf("%d\n",a);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 4788KB
stdin
Standard input is empty
stdout
16843009
16843009