반응형
1. Qdebug
Qdebug 를 사용한 콘솔 문자열 출력
#include <QDebug>
int main(void)
{
qDebug("Namhun QDEBUG");
return 0;
}
2. iostream
iostream 을 사용한 콘솔 문자열 출력
#include <iostream>
int main(void)
{
std::cout << "\nHellow workd of craft (iostream)\n";
return 0;
}
반응형
'QT > Basic Tutorial' 카테고리의 다른 글
<QT> PyQt & QtDesigner 설치 (라즈베리파이4) (0) | 2021.03.04 |
---|---|
Blocking Slave Example (0) | 2020.12.21 |
<QT> 단축키 (0) | 2020.12.18 |
<QT> QT 설치하기 (Install)(라즈베리파이4) (0) | 2020.12.15 |
<QT 기초> 딜레이(delay) 추가하기 (0) | 2020.12.14 |