+ 2
Help me!!! In c language
#include <stdio.h> //Compiler version gcc 6.3.0 int main(void) { int x= 10,y,z; z=y=x; y-= --x; z-= x--; x-=--x-x--; printf("%d %d %d\n",x,y,z); return 0; } when i print this in turbo c it gives output -- 611 and when i print it in eclipse or any other compiler it gives output -- 711
2 Answers
+ 8
Visual studio
https://www.sololearn.com/discuss/410578/?ref=app
Code blocks
https://www.sololearn.com/discuss/608805/?ref=app
+ 2
i didn't now... but i downloaded it recently