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