fork(2) download
  1. #include <stdio.h>
  2.  
  3. // your code for funktion prototyping goes here
  4.  
  5. int main() {
  6. int i=5;
  7. funka(i, 8); // function call
  8. return 0;
  9. }
  10.  
  11. // your code for funktion definition goes here
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.cpp: In function ‘int main()’:
prog.cpp:7:13: error: ‘funka’ was not declared in this scope
   funka(i, 8); // Funktionsaufruf
             ^
stdout
Standard output is empty