Hello could someone explain to me why this code turns out to show this (00 11 21 32 42) on the command prompt when I run the program?
Here's the code:
int main()
{
int x = 0;
int y = 0;
while (x < 5) {
y = x - y;
printf("%i%i ", x, y);
x = x + 1;
}
return 0;
}
Thank you.