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
Answers
Answered by
1
#include<stdio.h>
int main()
{
int a=5+2-2*2/2%5
printf("%d", a);
return 0;
}
Similar questions