TutorialsBazaar

← Back

Learn C++ Programming

Module 11/15

Strings

Module 11 of 15

C++ provides string class which is easier to use than character arrays. It supports operations like concatenation and length.

C++ में string class होता है जो character array से आसान होता है और कई operations support करता है।

#include <stdio.h>

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