fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char * ptr = "Hello!!";
  5. size_t size = sizeof(ptr);
  6.  
  7. printf("size if %zu\n", size);
  8.  
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 2156KB
stdin
Standard input is empty
stdout
size if 4