fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. char *str1 = "Hallo Welt!";
  6. char str2[] = "Hallo Welt!";
  7. printf("%d %d\n", sizeof(str1), sizeof(str2));
  8. }
Runtime error #stdin #stdout 0.02s 1720KB
stdin
Standard input is empty
stdout
4 12