025. Technical interview question: Give the output the following code November 21, 2018 Prashant Chaudhari Explanation For Technical Interview Questions #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 all videos like this