I install Qt Creator 3.5.1 and create project. In such case
#include <stdio.h>
int main(void)
{
printf("Hello World! \n");
return 0;
}
It works but Qt Creator doesn't open terminal and write down "Hello world" in "application output". When I modify code a little bit
int main(void)
{
int num;
scanf("%d", &num);
printf("Hello World! %d\n", num);
return 0;
}
It doesn't work. "application output" say: Starting /home/project/pr1 .....
The terminal does not open. In settings I try to change the different terminals
/usr/bin/gnome-terminal -x
/usr/bin/x-terminal-emulator -e
/usr/bin/xterm -e
It does not help me.
