hi...

i'm having some doubt regarding conversion of int to string.

Suppose

Qt Code:
  1. int iAscii_Val =65;
  2. //As 65 in Ascii represents 'A'
  3. QString strAscii = iAscii_Val;
To copy to clipboard, switch view to plain text mode 

Is there any method to convert so that i can get "A" in strAscii[QString] ?