#include <iostream>
int main(int argc, char **argv)
{
int x = 10;
// x goes to 0
while (x --> 0)
std::cout << x << std::endl;
}
Thu 31 December 2009
Thu 31 December 2009
#include <iostream>
int main(int argc, char **argv)
{
int x = 10;
// x goes to 0
while (x --> 0)
std::cout << x << std::endl;
}