Please answer me (
int a b c //scanf
b= 2+(++c)
a= (b--)×2+(++b)
c= --a+b++ //printf(a.b.c)
In C language
Answers
Answered by
0
Answer:
Secondly, the completed source file is passed to a compiler--a program which ... which adds together two integer numbers a and b and prints the result c . ... Add_Two_Numbers (a,b) /* Add a and b */ int a,b; { int c; c = a + b; printf ("%d",c); } ... input : abc output: a b c input : a [return] b [return] c [return] output: a b c input : 2.3
Explanation:
Similar questions