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); +}