From b618f5503f0339e2c54ed6dfd77a1c3ed2c1614e Mon Sep 17 00:00:00 2001 From: Harshit-coder <32755346+Harshit-coder@users.noreply.github.com> Date: Mon, 30 Oct 2017 20:51:58 +0530 Subject: [PATCH] Taking input and printing it in c --- Taking input and printing it in c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Taking input and printing it in c diff --git a/Taking input and printing it in c b/Taking input and printing it in c new file mode 100644 index 0000000..40d5a14 --- /dev/null +++ b/Taking input and printing it in c @@ -0,0 +1,7 @@ +#include +int main() +{ +int x; +scanf("%d\n",&x); +printf("%d\n",&x); +}