Open In App

Batch Script – Create String

In this article, we are going to learn how to create a String using Batch Script.

Batch Script :

@echo off 
set str=Geeks for Geeks
echo %str% 
pause

Output :

Output

As we can clearly see that our string is created.

Article Tags :