fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3.  
  4. // function prototype
  5. void pp(void);
  6.  
  7. #define SIZE 10
  8.  
  9. int main(){
  10.  
  11. pp();
  12. }
  13.  
  14. void pp(void) {
  15.  
  16. printf("size is : %d\n", SIZE);
  17.  
  18. }
  19.  
Runtime error #stdin #stdout 0s 2052KB
stdin
Standard input is empty
stdout
size is : 10