6. What is the output when the following code segment is executed?
main()
{
int a = 25;
printf("%d, %d %d %d," ++a, a++, --a, a--);
}
Answers
Answered by
2
i would be glad if you search this on google...
Answered by
3
Explanation:
include "stdio.h" int main() { int x, y = 5, z = 5; x = y == z; printf("%d", x); getchar(); return 0; }
Similar questions