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 Related Posts:C Program for the following Statement Statement: &nbs… Read MoreWhat is the Output of the following Question - Daily Quetions (adsbygoogle = window.adsbygoogle || []).push({}); Program: #include<stdio.h> #in… Read More
0 comments:
Post a Comment