fork download
  1. static int add(){
  2. return 1+4;
  3. }
  4.  
  5. extern __attribute__((visibility("default")))
  6. int add();
  7.  
  8. int main(){
  9. printf("%d",add());
  10. return 0;
  11. }
  12.  
  13.  
Success #stdin #stdout 0s 5312KB
stdin
Standard input is empty
stdout
5