fork download
  1. #include <stdio.h>
  2. void printm(char message[]) {
  3. printf("Message: %s\n", message);
  4.  
  5. }
  6.  
  7. int main(){
  8. printm("hello");
  9. printm("c is fun");
  10.  
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Message: hello
Message: c is fun