fork download
  1. # include <stdio.h>
  2. # include <string.h>
  3. int s(int a)
  4. { return a*a;
  5. }
  6.  
  7. int main( int argc, char* argv[])
  8. {
  9. int k = s(5);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 2288KB
stdin
Standard input is empty
stdout
Standard output is empty