Marvolus Lecture that I never seen and Heard before Dear Sir, I Heartly salute you sir!
@SumitSharma-fm3dg5 жыл бұрын
wow..!! what a teaching skills......just amazing... hats off to you sir and thanks a lot for this amazing content you are providing....its really helping a lot...
@kunalsoni76815 жыл бұрын
great one presentation sir i love this too much 😊😙😍😘
@kunalsoni76815 жыл бұрын
I'm first to watch this
@marbles55902 жыл бұрын
A little bit confusing at first but somehow I managed to get the correct answer on the first try. Still, I thank you for explaining it in detailed form.
@ericosmostech49034 жыл бұрын
Yeiiiiii! solved it successfully! c:
@qandos-nour4 жыл бұрын
I solved it by chance xDD Thank you bro you are the best
@Stekaren9 ай бұрын
a really interesting eye opener lecture. thank you sir
@kunalsoni76815 жыл бұрын
sir I'm still waiting to watch DATA STRUCTURE videos which are make by you .. SIR how many time to take for upload awesome,great,lovely presentation ?
@jasonchen97133 жыл бұрын
what a clear explanation
@01.abhishekkumar332 жыл бұрын
Excellent question
@7Strigiformes5 жыл бұрын
It's channel awesome thanks sir... Thanks a lot
@vijaysinghrawat21933 жыл бұрын
Thank you 💞
@indian34515 жыл бұрын
sir plz do videos on C ++..............reply plz
@vanshhundia58524 жыл бұрын
After foo(a+1), should'nt It go to putchar, and print?
@ritikshrivastava94423 жыл бұрын
It's a recursive call so when foo(a+1) encountered then it call same function with different address of a I mean next address of character array and when we encountered ' ' blank space then if conditions is not true and compiler will simple execute whole function then after finishing the execution it return to the previous state from where it is call and then execute the remaining code (printf)
@anaresh97425 жыл бұрын
Sir please do videos on breakdown of p-n diode
@prim165 жыл бұрын
Ah, nice, I was correct when I worked it out myself
@Aabara_ka_dabara Жыл бұрын
concept clear
@ruthviksaikalahastri7513 Жыл бұрын
Answer is (d) DCBA
@invincible6230 Жыл бұрын
sir acc to presidency, shouldn't the if condition be read as (*a && *a )!=' ' rather than *a && (*a!= ' ')
@md.shuheburrahman6583 жыл бұрын
Just awsome
@amansingh-xp8yi5 жыл бұрын
Plz guys support this channel by contributing small amount through donation as this is the only channel which provide good content and remember good things never come in free so request u all plz donate so that the aim of this channel to provide free education with good content goes on . I donate plz guys start your good initiative
@telegramvideos13134 жыл бұрын
thank u man
@Morimove3 жыл бұрын
Most of the questions are difficult so even after finding the right answer I think it is wrong this one is also like this😂🤣
@abishekbabu92475 жыл бұрын
Sir Would you please upload Data structure Classes please Sir this is my Humble request.
@KaifKhan-pr5rk3 жыл бұрын
change ' ' to ' ' now youve a program to reverse strings with whitespaces too
@006daredevil3 жыл бұрын
we can use '\0' as well
@sukanyabasu70905 жыл бұрын
No for loop, no increment/decrement! How come more than one character be printed
@aravindks76364 жыл бұрын
Recursion here
@ujagadeesh12474 жыл бұрын
@@aravindks7636 yeah your answer is correct but always it's run in between void foo and and foo(a+1) only right, how putchar() is not execute right and how it I'll show output
@j.r.r.tolkien87243 жыл бұрын
a+1 actually increments a each time it calls foo so even if you don't know recursion you should be more attentive and you'll have better conclusions
@opst17045 жыл бұрын
Isn't this badly written code. *a && *a != ' '. Precedence is confusing, or this is a "really bad" trick.
@nihalpandey56754 жыл бұрын
That's exactly what I thought
@ramarajujaya24804 жыл бұрын
equality operator != has more precedence than logical AND &&. you must go through lecture 34 which tells about precedence and associativity of c operators
@opst17044 жыл бұрын
@@ramarajujaya2480 nah.. I will just use parentheses which will increase readability of the code
@ramarajujaya24804 жыл бұрын
@@opst1704 yes we can do that
@j.r.r.tolkien87243 жыл бұрын
It's pretty obvious unless you're completely new in which case you shouldn't be reading such a program but rather familiarising yourself with more beginner code.