What's the difference of pData1 and pData2, which are build as follows
Posted
by user297850
on Stack Overflow
See other posts from Stack Overflow
or by user297850
Published on 2010-03-20T03:25:24Z
Indexed on
2010/03/20
3:31 UTC
Read the original article
Hit count: 229
What's the difference of pData1 and pData2, which are build as follows:
Blockquote pData1 = (int*) calloc (i,sizeof(int));
Blockquote int * pData2 = (int*) calloc (i,sizeof(int));
© Stack Overflow or respective owner