/*AN IMPLEMENTATION TO SHOW MOVE OF WHILE LOOP..RIGHTMOST ONE IS ALWAYS CONDITION IN WHILE LOOP*/
#include<stdio.h>
int main()
{
int i=0;
while(i<=10,i++)//it will not enter into the loop..//bcz right most value in while is a condition always ..post ++ment means ++ment after operation...so now i=0 ...makes condition false ...so not enter into loop
//if i would be 1 ...or made 1 somehow like using pre++ment operator...infinite loop would move