Assuming that we have a T myarray[100] with T = int, unsigned int, long long int or unsigned long long int, what is the fastest way to reset all its content to zero (not only for initialization but to reset the content several times in my program)? Maybe with memset?
Same question for a dynamic array like T *myarray = new T[100].
newis C++... – Matteo Italia Feb 5 at 20:06memsetwhen C++ is somehow involved... :) – Matteo Italia Feb 5 at 20:15