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?
1 Answer
#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?