Please note that some of this code does not work properly.
//Spring Break.cpp //makes an adress book of all friends w/ initials //due later rather than sooner //made for c++ 2 //Made By BILLY BOB HICKS #include
#include
#include
#include
int main() { char first[10][40]; char middle[10][40]; char last[10][40]; char phone[10][20]; char ann; int x=0,y=0; ifstream readfile("address.txt"); if(readfile.bad()) { cerr<<"FILE NON EXISTING"; exit(1); } system("CLS"); while(!readfile.fail()) { readfile>>first[x]; readfile>>middle[x]; readfile>>last[x]; readfile>>phone[x]; x++; } readfile.close(); ofstream writefile("initials.txt"); for(x=0;x<=9;x++) { writefile<