What will be the output of the following C code?
#include <stdio.h>
int main()
int a = 10, b = 5, = 5;
int d;
d = a == (b + c);
printf("%d", d);
Answers
Answered by
6
Answer:
Answer is to a printed
=10.
Similar questions