fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. write(1,"Bonjour, je m'appelle Selin. ", 30);
  6. write(1,"j'ai 22 ans", 13);
  7. return (0);
  8. }
  9.  
  10.  
  11.  
  12.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Bonjour, je m'appelle Selin. j'ai 22 ans