From ffb90a2735e7975cc5665b24ace7652e0da4de5a Mon Sep 17 00:00:00 2001 From: patronus12 <72188346+patronus12@users.noreply.github.com> Date: Thu, 1 Oct 2020 12:35:12 +0530 Subject: [PATCH] Create new.c --- new.c | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 new.c 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); +}