I am stuck here, as I want to write a simple program that shows Arabic writing on the output console. I have tried many times but I always ended up with strange output. I Use Windows 7 Home premium and the CodeBlocks Compiler.
Please check the code I wrote below; how can I improve it?
#include <iostream>
using namespace std;
int main(){
cout<<"محمد ذهب الي السوق\n"<<endl;
return 0;
}