Hi
I want to know...
can we able to create array of files and how ?????????
dhanashree 0 Newbie Poster
Recommended Answers
Jump to PostYou could certainly have an array of file HANDLES or the like...
FILE* myFiles[10]; for (int i = 0; i < 10; i++) myFiles[i] = fopen("Chainsaw.txt","r");
is that what you mean?
All 3 Replies
XianBin 0 Newbie Poster
Chainsaw 12 Posting Pro in Training
kc0arf 68 Posting Virtuoso Team Colleague
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.