From 877e65341caf9823efd55ed7c58c9f2be2a8a5f0 Mon Sep 17 00:00:00 2001 From: Deekshith19 <56424454+Deekshith19@users.noreply.github.com> Date: Sat, 31 Oct 2020 09:18:52 -0700 Subject: [PATCH] Create fourth_file --- fourth_file | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 fourth_file diff --git a/fourth_file b/fourth_file new file mode 100644 index 0000000..20c13db --- /dev/null +++ b/fourth_file @@ -0,0 +1,8 @@ +#include +int main() +{ +float c;int a,b; +a=9;b=7; +c=a/b; +printf("%d + %d =%d",a,b,c); +}