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
3
Answer:
f+s+x=(f+s)×x
sum =c+a+b=(c+a)×b
Similar questions