Hello Friends Please watch the updated version here - kzbin.info/www/bejne/ooawZ3hoi7KEaK8 Watch complete video series of subject Structured Programming Approach in C Programming only on Ekeeda Application. Download Ekeeda application to get 1000 Studycoins and use it to access free courses. Steps to follow:- 1. Download Ekeeda application from the link given below. 2. Sign up or Log in to your account. 3. You will get 1000 Studycoins worth Rs 1000. 4. Add the courses to your cart. 5. Select Study coins option to get free access. Android App : play.google.com/store/apps/details/?id=student.ekeeda.com.ekeeda_student iOS App : apps.apple.com/in/app/ekeeda/id1442131224
@suhaibqanooni53056 жыл бұрын
its a mistake if he put the value of c instead of a, an important thing is that to understand the concept.
@PramodKumarDRDOPsychologist6 жыл бұрын
Very nicely explained. Better than other videos.👍👍👍
@shubhamshrivastava50827 жыл бұрын
Sir u r tooo awsm , now i have understand totally thanku sir
@KDnature7 жыл бұрын
x=20+10+6=36 y=20+10+20=50 z=6+7+9=22
@affankhan-lz5bt7 жыл бұрын
bro the value of z will be 19 (6+6+7)
@smartibharat61766 жыл бұрын
Karthick Arima please explain this value of z to me
@edriangustincamacho34066 жыл бұрын
z = 6 + 6 + 7 .... please change this
@aniketdound86386 жыл бұрын
z=7+7+7=21 in x equation c is changed from 5 to 6. please check
@klarisa17845 жыл бұрын
please explain the z part
@mddanishkhan13014 жыл бұрын
Thnx sir it help me alot. I wasnt getting this even after watching lots of video on utube bt u make me understand this in ur first lecture. Once again thnx.
@mddanishkhan13014 жыл бұрын
int a=3; Pf("%d",a++ * ++a); Sir according to ur logic o/p would be 16 bt when it coded on laptop the o/p is 15 even it is mention in book 15. Bt i didnt get what i am missing through ur logic. Sir kindly help me out plz.
@mddanishkhan13014 жыл бұрын
Can any1 help me how it come 15 i got it bt when i apply the logic taught by sir then its ans is 16. What i am missing??.
@shivangianand63417 жыл бұрын
how in second expression a will be 6 ??
@ANANDKUMAR-08076 жыл бұрын
i think he has taken value of c,but printed a.
@aashishkumarvitta91914 жыл бұрын
video is very nice now i came to know about increment operators expression evaluation.
@josephdaniel67035 жыл бұрын
X=36,y=50,z=21... Please check
@rahulbind69867 жыл бұрын
in second expression how could be value of a is 6..... in the same expression y= --a + --b + a++ , first u have taken the value of a is 20 then after this why could u sir take the value for a++ is 1. i have a doubt plllzzz solve this sir??
@Aryan-wv6qe7 жыл бұрын
exactly bro but still people are commenting as best video .... Everything is okay except that value of y
@DASARITUTS7 жыл бұрын
I did this bro kzbin.info/www/bejne/fqfGiZ2rlM-BjbM&lc=z225slaiclz4ejni404t1aokgtmzsrse5u4a3vsbd4zcbk0h00410&feature=em-comments
@DASARITUTS7 жыл бұрын
I did this bro on increment/decrement operators.kzbin.info/www/bejne/fqfGiZ2rlM-BjbM&lc=z225slaiclz4ejni404t1aokgtmzsrse5u4a3vsbd4zcbk0h00410&feature=em-comments
@suhaibqanooni53056 жыл бұрын
the value of a was first incremented in finding x, then it is again decremented in finding y. so first it became 21 and then in finding y there is pre increment so the value should first decremented (from 21 to 20) then you have to use it. so the right answer for y is 50. thanks
@chrishigney706711 ай бұрын
very helpful - better than my professor
@poojasaxena85347 жыл бұрын
Really good video.... Thanks sir
@abznews51997 жыл бұрын
Sir I have One Question: When i am solve this Question then different C Compiler is Different Output Plz Explain it. #include #include void main() { int a=1,b; clrscr(); b=a++ + ++a + ++a; printf("%d %d",b,a); getch(); } Output in Turbo C++ 3.0 is : "b=9 and a=4". Output in Dev C++ 5.4.0 is : "b=7 and a=4". Output in Code Block 16.01 is : "b=8 and a=4".
@firozkhanagwan9665 жыл бұрын
Amazing sir Thank you so much for this video.. this is very helpfull video Thankyou...
@iamusmanshykh7 жыл бұрын
you are a legend sir !!
@manthanpatel72717 жыл бұрын
what will be for Linux Based
@uttampandey89887 жыл бұрын
according to this method the answer of int a=10; int c= a++ + ++a + a++ + ++a + ++a; cout
@prajwalramteke42297 жыл бұрын
thank u sir...it really helped me
@itse13887 жыл бұрын
#include int main() { int a=10; int c = ++a + a++; printf("a=%d c=%d",a,c); } sir it output is a=12 c=23 but by solving manual i got ans a=12 c=22 so how the prgrm execute plz explan sir?
@amirulamir30597 жыл бұрын
Thank you Sir. It helped me alot.
@deepakrkm13027 жыл бұрын
Very well explained Sir.Thank you very much.
@Ekeeda7 жыл бұрын
@Deepak rkmThanks for watching video.Kindly appreciate our work and please give us some feedback about channel. Please review your comments on below links 1) www.google.com/search?q=Ekeeda&ludocid=0x3be7cef39a0bcb1f:0x695389d0b57989f4 2) facebook.com/pg/Ekeeda/reviews/ And for more information regarding to subject please visit ekeeda.com/
@patpeter83367 жыл бұрын
he made a mistake ofcouse , but u guys can correct it without any condemnation.
@shabafirdosh89177 жыл бұрын
awesome vedio
@lakshmiranil6 жыл бұрын
Actual Output: Value of x = 36 Value of y = 50 Value of z = 22 Value of a = 21 Value of b = 10 Value of c = 9
@correcterror97707 жыл бұрын
Sir in second expression there is 'a' not 'c' then how u place value of c
@subratkishore1926 жыл бұрын
Sir..In secondon expression,there is a mistake....the correct expression is y=--a + --b + c++;
@rishivarma28917 жыл бұрын
int a=2,b; b= a++ + a-- + ++a + --a; printf("%d",a); printf("%d",b); for above question the output obtained is different from turbo.c and devc++
@raghumahadeva30137 жыл бұрын
sir i have one doubt , could you please explain this question void abc(int a, int b){ printf("%d%d",++a,++b); } void main(){ int a=10; abc(++a,a++); abc(a++,++a); printf("%d",a); }
@ayushyadav-ug3df7 жыл бұрын
according to your technique y= x++ + ++x ; and y= ++x + x++ ; should give the same answer but the results are different. can you explain why?
@mohitshakya11286 жыл бұрын
why are you give wrong explanation nhi ata h to mat batao jabrdsti kyun kr rhe ho
@jmitra0076 жыл бұрын
Absolutely correctly 😃😃😃😃
@suryachakraborty27757 жыл бұрын
The video help me a lot...but please solve a problem for me int a=10; b=a++ + a++ + a++; as per the said rule, post increment will be done at last,so 10 should be Placed before post increment; hence 30 is expected answer...but the answer is 33. Please clarify this thank you
@ashwinraj20775 жыл бұрын
thank u soooo much it really helped ....
@Ekeeda5 жыл бұрын
Its our motto to make your studies easy! Download Ekeeda Application and use coupon code 'FIRSTTIME' and you will be able to watch any one subject free for one month Android:- play.google.com/store/apps/details?id=student.ekeeda.com.ekeeda_student&hl=en iOS:- itunes.apple.com/tt/app/ekeeda/id1442131224
@amansaxena99585 жыл бұрын
@@Ekeeda soo please sahi se phadai apki values hi galat hai
@gaganbharadwaj75597 жыл бұрын
sir I had some questions can I ask
@abhinavs24847 жыл бұрын
how the value of *a* can be "6"?
@manishagumte95926 жыл бұрын
Super
@NasriDevLab6 жыл бұрын
Thanks sir
@manav13107 жыл бұрын
Best video available on this topic, thanks. :)
@Ekeeda7 жыл бұрын
Most Welcome, Always at your service, Kindly give us your worthy reviews as it will enable us to create more enriching videos in future and that will fulfill the educational needs of all. Click on following link and then on WRITE REVIEW to record your experience with Ekeeda www.google.com/search?q=Ekeeda&ludocid=0x3be7cef39a0bcb1f:0x695389d0b57989f4#istate=kp:xpd
@chandansatyam22997 жыл бұрын
in y expression replace last a value as c
@priyanshpatidar27507 жыл бұрын
a is 20 in second expression
@TheRock-zo7zl7 жыл бұрын
best
@hardikjaggi7007 жыл бұрын
A silly mistake is there sir in 2 nd one... Plz correct it
@kashyapsubbu77847 жыл бұрын
in expression box :- given - - a +- - b + a ++ = how we got a++ as 6 in y = 20+10+6* = 36 plse explain me someone
@sdj11627 жыл бұрын
kashyap subbu ans is 50
@josephdaniel67037 жыл бұрын
Yes!!
@ALLINONE-tm8cs7 жыл бұрын
Yessss even i have the same doubt
@yuvrajsandip34416 жыл бұрын
thats just a mistake .. he thought 'a' to be 'c'
@anandbali46565 жыл бұрын
Hello friends the value placed in second expression is wrong we will shortly correct it
@anandbali46565 жыл бұрын
Value of y=50
@26411bapul7 жыл бұрын
Wow! Awesome tutorial. Finally i got something valuable instead of getting random crap from other video. Thanks :) Only value of Y you wrongly updated.
@DASARITUTS7 жыл бұрын
I did this bro on increment/decrement operators.kzbin.info/www/bejne/fqfGiZ2rlM-BjbM&lc=z225slaiclz4ejni404t1aokgtmzsrse5u4a3vsbd4zcbk0h00410&feature=em-comments REPLY
@videosuperfastexpress6756 жыл бұрын
A =6 galat hai ullu 😂😂😂😂
@uttampandey89887 жыл бұрын
y=56. c nhi hai a hai expression me!!!
@Sudheerkreddy7 жыл бұрын
HI , i guess u made mistake for Y expression as it shows as in y at last as a++ but you took for c++ Correct me if i am wrong.!
@VinodRS015 жыл бұрын
Hello piece of bill gates.... whatever he said it's was good concept just he took a=6 by miss...dont judge .
@banothuramya65106 жыл бұрын
y expression is wrong a++ is not equal to 6
@Sanjivkumar-gj3qu7 жыл бұрын
answer is coming x=36 y=50 z=19
@affankhan-lz5bt7 жыл бұрын
yes u r right
@prathap.karaka7 жыл бұрын
yes i also got same whats th problem with it every video are same
@RanjeetKumar-xg9rs6 жыл бұрын
kyo kar rahe aisa chor do a =21 hai to a=6 kaha se aa gaya second statemet mai
@murderplays66786 жыл бұрын
y= - - a + - - b + a ++; are not y= 20 +10+6 = 36
@shilpachirag81097 жыл бұрын
Even though answer is wrong the way to reach answer is very easy ty
@kranthi93147 жыл бұрын
y value wrong
@vivek19901007 жыл бұрын
you posted this video in 2016 and did mistake in y expression ,,,,,,,,,,,,,,,,,but didnt corrected ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,if you cant tecll well stop posting videos ,,,,,,,,,,,,,
@patpeter83367 жыл бұрын
correct the mistake and stop abuse , why cant u post your program here and lets see
@jmitra0076 жыл бұрын
R8!!!
@vivek19901007 жыл бұрын
if you did correct in y express i would say best videos related to incement operator thanku,,,,,,,,,,,,,,
@kesarsingh99176 жыл бұрын
Looks like by mistake he has taken wrong values for a. He has taken value of c
@anchal54337 жыл бұрын
is trick se answer alg hi aata:(
@uttampandey89887 жыл бұрын
wrong method!!!
@videosuperfastexpress6756 жыл бұрын
Takale
@shubhamtripathi80515 жыл бұрын
heheheh
@VishalSharma-lz6ky6 жыл бұрын
wrong answere sir
@andredominicisip11966 жыл бұрын
Thanks for answering this bullshit of a lesson
@kattamanohar46156 жыл бұрын
Full wrongs waste
@divyanshshandilya23706 жыл бұрын
a =6 kaise ho gaya??!! 😑 agr nhi aata toh video mat banao pls...
@anandbali46565 жыл бұрын
If you can do the calculations along with me then you will u understand
@goutamyadav44006 жыл бұрын
ARE YOU CRAZY YOU DOING ALL EXPRESSION MISTAK AT FIRST SEE PROPER WAY THEN UPLOAD THE VIDEO