First program:
echo “Enter your name!!!”
read name
echo “hi $name,wat’s your age?”
read age
echo “Are you $age years old!!”
//This program just gets name and age as input and prints the statements 1,3,5….
//echo is similar to printf() in C and read is similar to scanf() in C..
Leave a Reply