(Created page with "<syntaxhighlight lang="c"> main() { int a=2; a=++a/a++; printf("%d", a; } </syntaxhighlight> {{Template:FB}} <disqus/> Category:Coding Questions")
(No difference)

Revision as of 09:43, 12 December 2013

<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