Recent Posts
PHP | 6 sec ago
None | 8 sec ago
PHP | 10 sec ago
None | 30 sec ago
None | 30 sec ago
None | 34 sec ago
PHP | 44 sec ago
None | 48 sec ago
C++ | 53 sec ago
None | 1 min ago
Sitereport
Find cool info about any domain on the internet?
visit sitereport
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By Anonymous on the 10th of Feb 2010 12:56:51 AM
Download |
Raw |
Embed |
Report
int main()
{
ifstream fichierIn("test.txt");
ofstream fichierOut("testChiffre.txt",ios_base::trunc);
if (!fichierIn.is_open())
{
cerr << "Impossible d'ouvrir test.txt" << endl;
return -1;
}
if (!fichierOut.is_open())
{
cerr << "Impossible d'ouvrir testChiffre.txt" << endl;
return -1;
}
// instructions
}
Submit a correction or amendment below.
[ previous version ] | [ difference ] | Make A New Post