Contact: aviboots(AT)netvision.net.il
39,914 questions
51,847 answers
573 users
#include <iostream> int main() { char matrix[][4] = { {'a', 'b', 'c', '\0'}, {'d', 'e', 'f', '\0'}, {'g', 'h', 'i', '\0'}, {'j', 'k', 'l', '\0'}}; std::cout << matrix[1] << "\n"; } /* run: def */