/ Undifined / Opening a file in C++

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 से समझाया जा रहा है।

about author

Blogger Sens it website about blogger templates and blogger widgets you can find us on social media
Previous Post :Go to tne previous Post
Next Post:Go to tne Next Post

No comments:

Post a Comment