Introduction
In this article, I would like to discuss some of the interesting c# interview questions,This post will be updated with new interesting c# interview questions.
Question and Answer
Q1 . Consider following code snippets
1 2 | int i=5; i=(i++)+i+(++i); |
what will be the value of variable i after these two lines?