<syntaxhighlight lang="c"> main() {

  int a=2;
  a=++a/a++;
  printf("%d", a;

} </syntaxhighlight>





blog comments powered by Disqus

<syntaxhighlight lang="c"> main() {

  int a=2;
  a=++a/a++;
  printf("%d", a;

} </syntaxhighlight>





blog comments powered by Disqus