// Lyrics.cpp : Displaying Lyrics. // Steve Baker #include "stdafx.h" char* stuff[]= { {"'Gone Crazy'"}, {"by Alan Jackson"}, {""}, {"Here I am all alone again tonight"}, {"In this old empty house"}, {"It's hard to learn what you don't think you need"}, {"You can't live without"}, {"Never leave the sound of the telephone"}, {"But ever since you left"}, {"I've been gone"}, {"Gone carzy, goin' out of my mind"}, {"I've asked myself the reasons,"}, {"at least least thousand times,"}, {""} }; char otherStuff[]={ "\ 'Gone Crazy'\n\ by Alan Jackson\n\ \n\ Here I am all alone again tonight\n\ In this old empty house\n\ It's hard to learn what you don't think you need\n\ You can't live without\n\ Never leave the sound of the telephone\n\ But ever since you left\n\ I've been gone\n\ Gone carzy, goin' out of my mind\n\ I've asked myself the reasons,\n\ at least least thousand times,\n\ \n" }; using namespace std; int _tmain(int argc, _TCHAR* argv[]) { int nCount=(sizeof(stuff)/sizeof(char*)); // One way... for (int i=0;i