Operators Statements C++ Tutorial

#include  
using namespace std; 
 
int main() 

  int i; 
 
  for(i=50; i >= -50; i = i-10) 
     cout << i << ' '; 
 
  return 0; 
}
50 40 30 20 10 0 -10 -20 -30 -40 -50 "