34. What will be the output?
#include <studio.h>
void main()
{
int x= (5*5)/1-5;
printf("%d",x);
}
Answers
Answered by
2
Answer:
2.50
is the output of the problem
Answered by
2
Answer:
actually it gives error because library file is stdio.h
not studio.h
after that correction if u run the output is
20
5*5 = 25
25/1 = 25
25-5 = 20
Similar questions