I want to know how for loop is processed in below condition.
void main()
{
int i,j;
For(i=1,j=1;i<=5,j<=10,i++,j++)
{
printf("%d%d",i,j);
}
}
sorry for typo mistake I correct my syntax here
For(i=1,j=1;i<=5,j<=10;i++,j++)
answer of this -1122334455667788991010
How's that possible because loop for I will be iterate for only 5 times how's that possible ? I want to know how loop will be executed ?