Hacker News
new
|
past
|
comments
|
ask
|
show
|
jobs
|
submit
login
gjulianm
on March 9, 2013
|
parent
|
context
|
favorite
| on:
Some dark corners of C
I didn't know that. To answer my previous question, clang doesn't fire a warning when passing pointers of any size to the function foo.
And by the way, nice talk, it's great learning these dark secrets of C.
rjek
on March 9, 2013
|
next
[–]
The compiler can't know at compile time with a naked pointer like it can with an array. [static 1] is handy to say it must not explicitly be NULL, as if it were optional, however.
gjulianm
on March 9, 2013
|
parent
|
next
[–]
Yes, but I expected some kind of "You're passing a pointer as an array of size n. I can't check the size, but you should make sure you've checked it".
ori_b
on March 9, 2013
|
root
|
parent
|
next
[–]
I can't imagine that would be anything but noise. 99% of my function calls have pointers passed through, not arrays.
adsr
on March 9, 2013
|
prev
[–]
But a pointer is not the same thing as an array, a pointer does not carry the size of the allocated space which an array does in the same scope.
Guidelines
|
FAQ
|
Lists
|
API
|
Security
|
Legal
|
Apply to YC
|
Contact
Search:
And by the way, nice talk, it's great learning these dark secrets of C.