From 600b07cd01ae053985efc7fdd2e8a8d3db83f6b7 Mon Sep 17 00:00:00 2001 From: rohit2610 <33067209+rohit2610@users.noreply.github.com> Date: Mon, 30 Oct 2017 20:52:09 +0530 Subject: [PATCH] take input and then print it in c --- take input and then print it in c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 take input and then print it in c diff --git a/take input and then print it in c b/take input and then print it in c new file mode 100644 index 0000000..9cfb0ae --- /dev/null +++ b/take input and then print it in c @@ -0,0 +1,10 @@ +#include +int main() +{ + int x,y; + printf("enter the numbers:"); + scanf("%d %d",&x,&y); + printf("%d %d",x,y); + } + +