From ff45a26d3ad281646384291e652470b1bebf9ff0 Mon Sep 17 00:00:00 2001 From: 17ucs008 <32043143+17ucs008@users.noreply.github.com> Date: Mon, 30 Oct 2017 21:30:24 +0530 Subject: [PATCH] take a input of number and printing output --- take a input of number and printing output | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 take a input of number and printing output diff --git a/take a input of number and printing output b/take a input of number and printing output new file mode 100644 index 0000000..5906853 --- /dev/null +++ b/take a input of number and printing output @@ -0,0 +1,7 @@ +#include +int main() +{ +int x; +scanf("%d\n",&x); +printf("%d\n",x); +}