fork download
  1. /* sprintf example */
  2. #include <stdio.h>
  3.  
  4. int main ()
  5. {
  6. unsigned char buf[]="hallo";
  7. printf ("buf: %s\n", buf);
  8. return 0;
  9. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
buf: hallo