might be a dumb question...
C / C++ / MFC
4
Posts
3
Posters
0
Views
1
Watching
-
-
Yes.
calloc(num, size)
is just shorthand formemset(malloc(num * size), 0, num * size)
. -- 20 eyes in my head, they're all the same![^] -
That is my understanding. It is also my understanding that night will be followed by day in the coming hours. I could be mistaken about one or the other or both, but I'm fairly certain about both. Matt
-
Yes.
calloc(num, size)
is just shorthand formemset(malloc(num * size), 0, num * size)
. -- 20 eyes in my head, they're all the same![^]