M
Mugunth
Do anyone know the answer to this problem?
Int16 req;
....
while (true) {
getRequest();
req++;
arr[req] = DateTime.Now;
}
Can you spot this code flaw?
From this link...
http://msdn2.microsoft.com/en-us/library/ms972827.aspx
-
Mugunth
Int16 req;
....
while (true) {
getRequest();
req++;
arr[req] = DateTime.Now;
}
Can you spot this code flaw?
From this link...
http://msdn2.microsoft.com/en-us/library/ms972827.aspx
-
Mugunth