Hi,
I am allocating memory using malloc() and then I am filling the aloocated memory with "0" using memset().
The combination of malloc() and memset() are being called many times in my project.
After adding memset() function affecting my project's performance. So I am searching for the alternative for the memset().
I have used calloc(), instead of combination of malloc and memset as a work around.
But I need an exact faster solution for my problem.