// francais projecct test1.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <iostream>
#include <string>
using namespace std;
int main()
{
char userAnswer[10];
char answer[] = { "Vous êtes" };
wcout << "s'il vous plaat ecrire conjugation pour Vous etre: ";
cin>>userAnswer;
if (strcmp(userAnswer, answer) == 0)
cout << endl << "correct"<<endl<<endl;
else
cout << endl << "wrong answer"<<endl<<endl;
system("pause");
return 0;
}
The accented characters aren't recognized by the compiler and I don't know how to get input of unicode characters if unicode is required.