diff --git a/take input and then print it in c b/take input and then print it in c new file mode 100644 index 0000000..9cfb0ae --- /dev/null +++ b/take input and then print it in c @@ -0,0 +1,10 @@ +#include +int main() +{ + int x,y; + printf("enter the numbers:"); + scanf("%d %d",&x,&y); + printf("%d %d",x,y); + } + +