fork(2) download
  1. #include<stdio.h>
  2. #include<string.h>
  3.  
  4.  
  5.  
  6.  
  7. int main()
  8. {
  9. char s[10];
  10. strncpy(s,"hello",5);
  11. printf("Hello !!%s %d\n",s,strlen(s));
  12. return 0;
  13. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
Hello !!hello�O�� 10