er.chiraggupta 0 Newbie Poster
std::ifstream in("chirag.txt");

  char k[10];
  in>>k;
  QString ch=QString(k);
 ui->mes->setText(ch);
                     //mes is a Qlabel
                    //ui is Qwindow object
               

                  
                  
            

                }

/*Qlabel is showing nothing ... Please tell what is wrong with the above code
*/