qchar to char

QString str = "hello grepper"
char letter = str[0].toLatin1(); //letter == 'h'
Sorann