fork download
  1. #include <stdio.h>
  2. #include <limits.h>
  3.  
  4. int main() {
  5.  
  6. printf("Storage size for int : %d \n", sizeof(int));
  7.  
  8. return 0;
  9. }
Success #stdin #stdout 0s 2160KB
stdin
Standard input is empty
stdout
Storage size for int : 4