I came across this weird C++ program.
#include <iostream>
using namespace std;
int main()
{
int a = ({int x; cin >> x; x;});
cout << a;
}
Can anyone explain what is going on? What is this construct called?
|
I came across this weird C++ program.
Can anyone explain what is going on? What is this construct called? |
|||||||||||||||||||||
|
|
It assigns user input value to Statement Expressions are gnu gcc compiler extension are not supported by the C/C++ standards. Hence any code which uses statement expression is non standard conforming and non portable. The IBM IBM XL C/C++ v7.0 also support Statement Expressions & it's doccumentation explains them aptly: Statement Expressions:
Always compile your code by selecting a sandard in GCC, use one of the options |
||||
|
|
|
It's a GCC extension. Compile your code with the |
|||||||||||||||
|
|
It creates an inline scope, declares The comma operator works similarly, although it doesn't require a separate scope. For example:
would do the same. All the statements connected with commas will be executed sequentially, and the result of the whole expression will be set to the value of the rightmost operand. |
|||||||||||||||||
|
|
I don't believe that this is standard C++. It's probably a compiler-specific extension that allows an inner scope to evaluate to a value. |
|||||||||||||||||||
|