fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char string[10] = "teste";
  5. char* string_ptr = &string;
  6.  
  7. printf("%s", string_ptr);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0s 4396KB
stdin
Standard input is empty
stdout
teste