Hacker News new | past | comments | ask | show | jobs | submit login

Correct. A method to extract a pointer from an array already exists:

  int *p = &arr[0];
The mistake is to allow this:

  int *p = arr;



And yet, coding styles do not prohibit it and there is no compiler that has a warning.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: