So there are the obvious places to use size_t, like when the function prototype says you should. I've seen this:It's common practice to use an int instead. Should I use size_t? When? Why?Code:size_t i;
for(i=0; i<10; i++)
{
/* body */
}
Is there anything else I should know about size_t?

