fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4.  
  5. {
  6.  
  7. int x=33554431;
  8.  
  9. float y=33554431;
  10.  
  11. printf("%d\n",x);
  12.  
  13. printf("%f\n",y);
  14.  
  15. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
33554431
33554432.000000