fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char *s = "hello, world";
  5. printf("'%s' length=%u\n", s, sizeof("hello, world"));
  6. return 0;
  7. }
  8.  
Success #stdin #stdout 0s 2112KB
stdin
Standard input is empty
stdout
'hello, world' length=13