This is probably a very elementary problem, but I cannot find the answer anywhere, and this is the first time I\'ve had the problem after several weeks of programming in C. In e
Remove the & in the printf statement as &size --> prints the address.
&
printf
&size
printf("size is %d", size);