Friday, 12 December 2014

Shell Script for String Concatenation

Write a Shell Script for String Concatenation

Solution:

echo String Concatenation
echo Enter First String
read s1
echo Enter second String
read s2
echo Concatenated String is: $s1 $s2

Execution:


No comments:

Post a Comment