News:

Download Pelles C here: http://www.smorgasbordet.com/pellesc/

Main Menu

little puzzle

Started by czerny, May 06, 2014, 05:38:57 PM

Previous topic - Next topic

czerny

Try to guess first what is the output of this little proggi!
#define SIZE 5

int size(int s[SIZE])
{
return sizeof(s);
}

int main(int argc, char **argv)
{
int x[SIZE],k,n=SIZE;

k=size(x)+sizeof(n++);
printf("%d\n",k+n);
return 0;
}

jj2007

sizeof(n++); is a cheat >:(

Snowman

#2
Array to pointer decay caught me off guard. At least C++ has references to arrays.  ::)
Interesting how n remains 5 after sizeof(n++). I didn't know that.