fork download
  1. #include <stdio.h>
  2. void Print_massage()
  3. {
  4. printf("input data\n");
  5. }
  6. int main(void) {
  7. // your code goes here
  8. Print_massage();
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
input data