What will be the output for the following code?
main() {
int a, b;
a= 5.999;
b = 5.002;
printf("a=%d b=%d", a,b);
Answers
Answered by
0
Answer:
a=5 and b=5 as a,b are integer data type so only it will return the integer value
Similar questions