Opening a file in C++ - NayiPathshala

Breaking

Total Pageviews

Loading...

Search Here

11/18/2017

Opening a file in C++


Opening a file
C++ में files को open करने के लिए आप open() method यूज़ करते है। इस method को ऊपर किसी भी file stream class के object पर call किया जा सकता है। इस method का general syntax नीचे दिया जा रहा है।

void open(const char *filename, ios::mode);

जैसा की आप ऊपर दिए गए syntax में देख सकते है, open() method 2 arguments लेता है। पहला argument एक constant character type का file name होता है। Basically ये एक pointer होता है जो memory में file को point करता है। पहले argument के रूप में आप कोई भी variable नहीं दे सकते है।

File open करने के लिए fopen() method में दूसरा argument आप file opening mode pass करते है। इन modes के बारे में आगे detail से समझाया जा रहा है।

No comments:

Post a Comment