TutorialsBazaar

← Back

Learn C++ Programming

Module 5/15

Input & Output

Module 5 of 15

C++ uses cin for input and cout for output. These are part of iostream library. Example: cout << "Hello";

C++ में input के लिए cin और output के लिए cout का उपयोग होता है। ये iostream library का हिस्सा हैं।

#include <stdio.h>

int main() {
    printf("Welcome to Input & Output");
    return 0;
}