fork download
  1. #include <stdio.h>
  2.  
  3. int main(void){
  4. char s[5];
  5. int n = snprintf(s, sizeof(s), "%s", "abcdefg");
  6. printf("%s\n", s);
  7. printf("%d\n", n);
  8. return 0;
  9. }
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
abcd
7