cin , a

Hello
What does the line
cin, a;
do in the program:
1
2
3
4
5
6
7
8
9
10
11
#include <iostream>
using namespace std;
int main()
{
   int a = 0, b = 0;
   cin , a;
   cout << a<<' ' << b ;
   
    for(int i =9;i<300000000;++i);
    return 0;
}


Thanks in advance!
It evaluates both sides of the operator, then returns the right hand side.
Topic archived. No new replies allowed.