카테고리 없음

qt qDebug

chacharang 2021. 1. 10. 21:55

#include <QDebug>

 

 

consol message 

 

int byval= 100;

qDebug() <<"hello";

qDebug("QtFirst Project. My value. %d", byval);

 

Result  ->

 

hello

QtFirst Project. My value. 100

 

저작자표시 비영리 변경금지 (새창열림)