fork download
  1. #include <Python.h>
  2.  
  3. static PyObject *func(PyObject *self, PyObject *args)
  4. {
  5. double array[3];
  6.  
  7. if (!PyArg_ParseTuple(args, "(ddd)", &array)){
  8. return NULL;
  9. }
  10. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:1:20: fatal error: Python.h: No such file or directory
compilation terminated.
stdout
Standard output is empty