What is the Output of the following Question - Daily Quetions 03:15 by Let Us Code in C Asked in Tech Mahindra, Daily Questions 0 Program: #include<stdio.h> #include<conio.h> void main( ) { int i,j; j = 10; i = j++ - j++; printf("%d %d", i,j); } Solution: j=10 i= 10 - 10 j value is incremented by two times. So,Output is 0, 12 Share This: Fawitter Google+ Email ThisBlogThis!Share to XShare to Facebook
0 comments:
Post a Comment