025. Technical interview question: Give the output the following code March 25, 2018March 3, 2018 Prashant Chaudhari Technical Interview Questions And Answers #include<stdio.h> int main() { int a = 1, b = 1, c; c = a++-++b; printf("%d, %d, %d", a, b, c); }#include<stdio.h> int main() { int a = 1, b = 1, c; c = a++-++b; printf("%d, %d, %d", a, b, c); } Watch video explanation for this technical question