What is @echo off | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

What is @echo off

this is a programing language

30th Mar 2018, 9:47 AM
AvinashTrivedi
1 Answer
0
Assuming you're talking about batch. @echo off hides the output of commands. For example, say you have this batch program: set N=5 echo %N% If you run it, it outputs: C:\....>set N=5 C:\....>echo 5 5 Probably not what you want. If you now add @echo off to the beginning of the program: @echo off set N=5 echo %N% Now it only prints: 5
30th Mar 2018, 12:10 PM
Dennis
Dennis - avatar