fork download
  1. #include <stdio.h>
  2. __inline int GetNumber(int x) {return x +42;}
  3.  
  4. int main()
  5. {
  6. int n = GetNumber(3);
  7. printf("%d \n",n);
  8.  
  9. return 0;
  10. }
  11.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
/home/HW2rrY/ccdvyhAO.o: In function `main':
prog.c:(.text+0x16): undefined reference to `GetNumber'
collect2: ld returned 1 exit status
stdout
Standard output is empty