Welcome to the IDM Forum. This forum is meant as a user-to-user support mechanism where users can share knowledge and tips for all IDM software.
Since these forums are user-to-user based, IDM does not regularly read or reply to the posts in this forum. For problem reports, suggestions, or feature requests, you must email us directly. Our trained technical support staff answers most inquiries within 30 minutes.



#include <stdio.h> // for printf() and getchar()
void main(void)
{
const char sPrompt[] = "Enter something: ";
int iChar;
printf(sPrompt); // Print string to device stdout.
do
{
iChar = getchar(); // Get character from stdin with echo to stdout.
}
while(iChar != '\n'); // Break loop when RETURN pressed.
}#include <stdio.h> // for printf() and putchar()
#include <conio.h> // for cprintf(), getch() and putch()
void main(void)
{
const char sPrompt[] = "Enter something: ";
int iChar;
cprintf(sPrompt); // Print string directly to console window.
printf(sPrompt); // Print string to captured device stdout.
do
{
iChar = getch(); // Get character directly from keyboard and not from stdin without echo.
putch(iChar); // Write character directly to console window not using stdout.
putchar(iChar); // Print character to captured device stdout.
}
while(iChar != '\r'); // Break loop when RETURN pressed.
}
spuzh wrote:Which windows I need to open in UE to work with Perl?
spuzh wrote:How can I execute it and see directly result of my script?
