vector<char> from string literals
What is the output of this program?
#include <vector>
#include <iostream>
int main() {
std::vector<char> delimiters = { ",", ";" };
std::cout << delimiters[0];
}
Sign in to answer questions and track your progress
Sign In