0
#include<stdio.h>

int main()
{
    int i=0;
    while(i<4,5)
    {
        printf("loop");
        i++;
    }
    return 0;
}

The answer is an infinite loop. I can't understand how two expressions work in while loop without any logical operators.

dbush
  • 186,650
  • 20
  • 189
  • 240

0 Answers0