Answers for "i++ i--"

C++
0

i++ i--

let x = 10;
while(x < 20) { //when x is less than 20
  x++; //add 1 to x
  console.log(x); //logs the numbers 11 - 20 to the console
}
Posted by: Guest on February-22-2022

Browse Popular Code Answers by Language