You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You cannot pass an array to or return an array from a C function. f(char x[N]) is equivalent to f(char *x) for every N. On x86_64 linux, the following two extern "C" functions produce the same assembly:
You cannot pass an array to or return an array from a C function.
f(char x[N])
is equivalent tof(char *x)
for every N. On x86_64 linux, the following two extern "C" functions produce the same assembly:This will segfault.
The text was updated successfully, but these errors were encountered: