+ 1
Help me to solve the problem.
#include<stdio.h> int main() { int a =0; printf("%d%d%d",++a,a++,++a); return 0; } O/P 313 My soln is below L<---R Rule 311 This is the calling convention in c. I need more details about calling convention and its working logic..... Any *C experts* explain in detail about calling convention Plzz..
2 Answers
+ 4
Undefined behavior.
https://www.sololearn.com/Discuss/2284550/?ref=app