#include int main(int argc, char** argv) { for (int i = 1; i < argc; ++i) { for (int j = 0; argv[i][j]; ++j) { printf("%c\n", argv[i][j]); } } }