#include <stdio.h>
int maino
int a = 9, b = 4, C;
a+b;
printf(a+b = %d \n", 0);
c = a-b;
printf("a-b = %d \n",c):
a*b;
printf("a*b = %d \n", c):
C a/b;
printf("a/b = %d \n",c):
a%b;
printf("Remainder when a divided by b = %d\n",);
return 0;
}
Answers
Answered by
0
Your coding paper is you should to improve your spellings.
Like after peintf you should to make a space and int main (0) is not right, void main (0) is right
After completing printf you should to use scanf for calculation.
After void main (0) start with bracket { and end with bracket }.
I hope it is useful for you.
Similar questions