040. Technical interview question: Give the output of following code Prashant Chaudhari 6 years ago int main() { int i = 5; int a = --i - --i - --i - --i; printf("%d", a); return 0; }