0

What is this format? A list? An array?

#include <iostream> using namespace std; int main() { int x = (1,2,3,4,5); cout << x; } // output is the 5 (or whatever is the last integer within the parenthesis) What concept is being tested here?

1st Aug 2020, 5:50 AM
Solus
Solus - avatar
1 Answer