TutorialsBazaar

← Back

Learn C++ Programming

Module 14/15

File Handling

Module 14 of 15

C++ uses fstream library for file handling. Classes like ifstream, ofstream, and fstream are used to read and write files.

C++ में file handling के लिए fstream library का उपयोग होता है जिसमें ifstream और ofstream classes होती हैं।

#include <stdio.h>

int main() {
    printf("Welcome to File Handling");
    return 0;
}