I

Size: a a a
I

Ю
IW

#include <stdio.h>
int main()
{
int x = 10;
while (x --> 0) // x goes to 0
{
printf("%d ", x);
}
}
// output: 9 8 7 6 5 4 3 2 1 0
ᅠ
ᅠ
#include <stdio.h>
int main()
{
int x = 10;
while (x --> 0) // x goes to 0
{
printf("%d ", x);
}
}
// output: 9 8 7 6 5 4 3 2 1 0
IR
ДЗ
👑️
A
A
ДЗ
A
ДЗ
Ю
👑️
ДЗ
👑️
Ю
R3
R3