Operators
Mushtariy
Posted on October 14, 2024
a) += operatori qanday ishlaydi? misol keltiring.
int a = 1;
for(int i = 1; i <= 5; i++)
{
a += i;
}
b) ++ operatori qanday ishlaydi? Post increment va preincrementni tushuntiring.
int a = 1;
for(int i = 1; i <= 5; i++)
{
i++;
Console.WriteLine(i);
}
💖 💪 🙅 🚩
Mushtariy
Posted on October 14, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.