fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5. int a = -300;
  6.  
  7. unsigned int* b = (unsigned int*)&a;
  8.  
  9.  
  10. printf("%d\n%d", a,*b);
  11.  
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 5332KB
stdin
Standard input is empty
stdout
-300
-300