From 2ece872ce002ac340bdf68af6aeeb8291aa00a1e Mon Sep 17 00:00:00 2001 From: Abhishek234 <33246891+Abhishek234@users.noreply.github.com> Date: Tue, 31 Oct 2017 13:16:01 +0530 Subject: [PATCH] input of number in c and printing it --- input of number in c and printing it | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 input of number in c and printing it diff --git a/input of number in c and printing it b/input of number in c and printing it new file mode 100644 index 0000000..8168a38 --- /dev/null +++ b/input of number in c and printing it @@ -0,0 +1,7 @@ +#include +int main() +{ + int x; + scanf("%d",&x); + printf("%d",x); +}