Computer Science, asked by reomo, 1 year ago

Write a program in C/C++ to perform arithmetic operations by using all arithmetic operators with two digits 5 and 2 and also print the result on screen.


AJKR: hi
reomo: Hy

Answers

Answered by madanstudio02
1

#include<stdio.h>
int main()
{
int a=5+2-2*2/2%5

printf("%d", a);
return 0;

}

reomo: Thnx
Similar questions