How to resolve the algorithm Check input device is a terminal step by step in the REXX programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Check input device is a terminal step by step in the REXX programming language

Table of Contents

Problem Statement

Demonstrate how to check whether the input device is a terminal or not.

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Check input device is a terminal step by step in the REXX programming language

Source code in the rexx programming language

/*REXX program determines if input comes from terminal or standard input*/

if queued()  then say 'input comes from the terminal.'
             else say 'input comes from the (stacked) terminal queue.'

                                       /*stick a fork in it, we're done.*/


  

You may also check:How to resolve the algorithm Determine if a string is squeezable step by step in the BCPL programming language
You may also check:How to resolve the algorithm Write to Windows event log step by step in the Julia programming language
You may also check:How to resolve the algorithm Guess the number step by step in the Racket programming language
You may also check:How to resolve the algorithm Nested function step by step in the Cowgol programming language
You may also check:How to resolve the algorithm Sorting algorithms/Bubble sort step by step in the PARI/GP programming language