techAtma
Wednesday, December 12, 2018
SHELL SCRIPT PROGRAM TO SUM OF TWO NUMBERS
PROGRAM:
echo "Enter two number"
read a
read b
c=`expr $a + $b`
echo "sum=" $c
OUTPUT:
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Static Member Function
CODE : #include<iostream> using namespace std; class test { int code; static int count; //static...
No comments:
Post a Comment