diff --git a/new.c b/new.c new file mode 100644 index 0000000..b053310 --- /dev/null +++ b/new.c @@ -0,0 +1,8 @@ +//how to divide two numbers +#include +int main() +{ +int a=4,b=2; +int c=a/b; +printf("%d",&c); +}