Let's take an example


int a = 1;
for(;a>0;a++)

In the code above the condition is always true so the loop is infinite but int datatype have a limit so what will happen if value of "a"...