From b38925baabba843c44eb75620fa977e6431857a1 Mon Sep 17 00:00:00 2001 From: rajraman786 <19bcs063@smvdu.ac.in> Date: Tue, 22 Oct 2019 12:59:37 +0530 Subject: [PATCH] update code --- raman.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 raman.c diff --git a/raman.c b/raman.c new file mode 100644 index 0000000..3a565e1 --- /dev/null +++ b/raman.c @@ -0,0 +1,10 @@ +#include +int main() +{ +int a,b,sum; +printf("enter the two no."); +scanf("%d%d",&a,&b); +sum=a+b; +printf("the sum of the two no. is %d",sum); +return 0; +} \ No newline at end of file