#include stdio.h
int main() {
int i = 1;
while (i = 5) {
printf("%d\n", i);
++i;
}

return 0;
}
What is the output of the following program

Posted on by