Answer the question
In order to leave comments, you need to log in
Problem with debugging console applications in Qt Creator
I create the simplest console application in Qt Creator:
#include <iostream>
int main(int argc, char *argv[])
{
int n;
std::cin >> n;
return 0;
}
Answer the question
In order to leave comments, you need to log in
If I'm not mistaken, then nothing can be entered in cin in the creator's console. You need to run the application not by the creator, but really, and enter / debug!
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question