VRM
0
Q:

whiel loop in C

int i=0;
while(1){
  // Process you want to loop
  i++;
  if(i>10){
    break;
  }
}
  
1
while (testExpression) 
{
    // statements inside the body of the loop 
}
0

New to Communities?

Join the community