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