0
Full fill the codes below plz
#include <stdio.h> int main() { int a = 6; int b = 4; int c = 2; int result; result = a - b + c; // 4 result = a + b / c; // 8 result = (a + b) / c; // 5 return 0; }
5 Respuestas
+ 2
Do you mean like this?
https://code.sololearn.com/cVCsx6IsTv7h/?ref=app
+ 2
Where is the fill up?
There is no printf to print the result.
You can use
printf("%d",result);
Above return 0;
+ 1
Yes... thanks a lot
0
I have done it.. bt the result shows only 5
0
Complete the codes for me plz