Computer Science, asked by kulsumsavera131, 7 months ago

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 gauravinnani
2

i would be glad if you search this on google...

Answered by jshandilya
3

Explanation:

include "stdio.h" int main() { int x, y = 5, z = 5; x = y == z; printf("%d", x); getchar(); return 0; }

Similar questions