+ 3
I have gained some knowledge about C++ And i know how to print a text. Is there a way to print hindi language output.
3 Respostas
+ 2
When I type it then it shows output in some other language
#include <iostream>
using namespace std;
int main() {
cout<<"गजनी";
}
+ 2
Maybe its an Unicode issue.
+ 1
You'll print whatever you cout to the console, so you can print Hindi language by just using cout << "text";