Math, asked by wwwkhasim345, 5 days ago

What will be the output of the following
#include
int main 0
{
char c,a,b;
c='f';
a='s';
b='x';
int sum= c+a+b;
printf ("%d", sum);
}​

Answers

Answered by neerajkrishnakrkrish
3

Answer:

f+s+x=(f+s)×x

sum =c+a+b=(c+a)×b

Similar questions