PASTEBIN
| #1 paste tool since 2002
create new paste
tools
api
archive
real-time
faq
PASTEBIN
create new paste
trending pastes
sign up
login
my settings
my profile
Public Pastes
Untitled
0 sec ago
Coldfusion - XML P...
0 sec ago
JSF + jQuery: how ...
6 sec ago
NetFlix Cuentas Pr...
17 sec ago
How do I get sum o...
12 sec ago
Free Spire Siri Pr...
28 sec ago
Untitled
17 sec ago
Vybz Kartel Kingst...
17 sec ago
Untitled
By: a guest on Jan 28th, 2012 | syntax:
None
| size: 0.19 KB | hits: 22 | expires: Never
download
|
raw
|
embed
|
report abuse
Copied
//I want to read a file into an array
QTextStream in(&file);
QString *newbArray[/*don't know how big array is*/];
int i(0);
while(!in.atEnd()){
newbArray[i] = in.readLine();
i++;
}
create a
new version
of this paste
RAW Paste Data
//I want to read a file into an array QTextStream in(&file); QString *newbArray[/*don't know how big array is*/]; int i(0); while(!in.atEnd()){ newbArray[i] = in.readLine(); i++; }