Three Address Code, DAGs, Basic Blocks and Flow Graphs | Important Problems

  Рет қаралды 55,209

LearnVidFun

LearnVidFun

Күн бұрын

In this video, we will discuss problems based on Three address code, Directed Acyclic Graphs (DAGs) and Basic blocks & Flow Graphs in Compiler Design.
Watch Three Address Code Video here-
• Three address code in ...
Watch Directed Acyclic Graphs (DAGs) Video here-
• Directed Acyclic Graph...
Watch Basic Blocks and Flow Graphs Video here-
• Basic Blocks and Flow ...
For details, please watch the video.
Get these handwritten notes from website here-
www.gatevidyal...
Click here to get notes-
www.gatevidyal...
These problems are important for semester examination as well as competitive examinations like GATE, NET etc.
Watch the complete Compiler Design Tutorials here-
• Syntax Trees in Compil...
Follow us on-
LearnVidFun Facebook : / learnvidfun
Gate Vidyalay Facebook : / gatevidyalay
Gate Vidyalay Website : www.gatevidyal...
For any doubts/ queries, please comment below...
Please...Like, share and comment if you really gained something from this video and don't forget to subscribe yourself for getting the latest updates!
Your support really encourages us to do better....Thank you!! :)

Пікірлер: 262
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Hey Guys, Now we have launched our own website www.gatevidyalay.com Kindly visit that website and you can download the notes from there and get other study material! If you can provide any suggestions regarding the improvement of KZbin channel as well as website...we would definitely love to have them! All the best...Keep learning :)
@anonymousfan9703
@anonymousfan9703 Жыл бұрын
Such a greate content but still very less views I am sad about you 😢😢😢
@KULDEEPSINGH-rh3go
@KULDEEPSINGH-rh3go 6 жыл бұрын
After spending lots of money and time into coaching and college.......my concept is clear through this free videos.....how amazing is this ...... anyways brother..... thanks..... The only regret that I have is.... Why i didn't visit this KZbin channel before...
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Thanks a lot buddy for the appreciation! All the best...Keep learning :)
@darwinclown5
@darwinclown5 8 жыл бұрын
You are like a best friend came to rescue on last night before exams .... Thank you buddy :)
@LearnVidFun
@LearnVidFun 8 жыл бұрын
Happy to help you buddy... :)
@vasubhatt6160
@vasubhatt6160 4 жыл бұрын
@26:31 why do we need to put goto last with L2? because it's already the last statement.
@amarm4605
@amarm4605 6 жыл бұрын
Great teaching method. Thank you for your effort. Your videos mean a lot to lots of people like me. :)
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Thanks a lot buddy! Glad to help you and serve the country and country men! All the best...Keep learning :)
@divyathampi9477
@divyathampi9477 7 жыл бұрын
can we write the switch statement mentioned in this video in following manner ? 1.) if (ch=1) then goto(3) 2.) goto(6) 3.) t1= a+b 4.) c= t1 5.) goto(10) 6.) if(ch=2) then goto( 8) 7.) goto(10) 8.) t2= a-b 9.) c=t2 10.)
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Yes...you can! This is also the correct representation of three address code :)
@roshankharke3725
@roshankharke3725 5 жыл бұрын
In third problem, It is given that initially i = 1 so we should use { T1 = address(a) - 4 & T2 = address(b) - 4 } ; (that is the base address of both arrays), now we can use the offset (i * 4) for calculating value of elements of array.
@kaushikmukherjee1481
@kaushikmukherjee1481 7 жыл бұрын
why is It 4*i? is it applicable to all array ? Somewhere it has been written like 8*i.....Please tell me which one is correct?
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Actually...both are correct as it differs in accordance with the compiler!! You may use any of these.....The detailed explanation I will cover in other coming videos.... All the best...Keep learning :)
@srilathayelamati4893
@srilathayelamati4893 7 жыл бұрын
sir in three adress code can we directly write x =x+1 instead of writing t1=x+1,x=t1
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy... No, you cannot write "x=x+1". You will have to write- t1 = x + 1 x= t1 You can understand it this way...Suppose you have to perform the calculation of x = 5 + 1. Then, what you will do, you will first perform the addition of 5 and 1 in your mind and store it in your mind. Then, you will assign the value of the result to x. Compiler also performs the calculation in same manner. It first adds 5 and 1 and then stores the result in some temporary variable say t1 and then assign the value of t1 to x. I hope you understood the point....All the best....Keep learning :)
@ShubhamRajput-sx8jb
@ShubhamRajput-sx8jb 4 жыл бұрын
you have beautifully explained all the topic ...thanks a lot
@vishwanathhosmane3834
@vishwanathhosmane3834 3 жыл бұрын
Sir last question mein aapne ye toh bataya hee nahi ki agar basic block B2 ke last statement (12th statement) mein condition false ho jaaye toh loop kaha jaayega? [Aapne toh sirf true condition hee likha hai false condition nahi likha i.e., you have written 12th statement as if(i
@shashishekhar1729
@shashishekhar1729 7 жыл бұрын
YOUR ARE A SAVER BRO , MAY GOD BLESS YOU
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Thanks a lot buddy...Keep learning :)
@98anirban
@98anirban 5 жыл бұрын
Problem 4 : Why have you created another node 'a' for the last statement a = t2 + t2?
@gopeshkhandelwal9823
@gopeshkhandelwal9823 5 жыл бұрын
why can't we directly write x=x+1 in problem 1? as it is also a tac by default and also while optimizing it, x=x+1 will come.
@indrag4225
@indrag4225 7 жыл бұрын
in problem 3, shall we write B[T1] , i want to know the minimum number of temporary variables needed for this problem
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy...I did not get your question. What exactly do you want to ask?
@debopamseal1072
@debopamseal1072 7 жыл бұрын
In 1 video you explained what our teacher couldn't in 2, 50 min classes...
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Thanks a lot buddy for your appreciation...Keep learning :)
@sajmirazaman1081
@sajmirazaman1081 7 жыл бұрын
if we have another continued block after B2, then are we supposed to put a directed edge from B2 TO B3?
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Yes dear...You are right!! We will continue in the same fashion :)
@Ranjeet_Chauhan_customs
@Ranjeet_Chauhan_customs 7 жыл бұрын
absolutely good, yours hardworks shown in video,,,,,,,,thnxxx u sir ,plzz keep it
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy...Thanks a lot for your appreciation! Actually, very few people notices the others hardwork....I am glad I have got such a nice audience.... All the best..Keep learning :)
@apvcgy
@apvcgy 5 жыл бұрын
how can we store a 2d array in 3 address code?? eg-: a[i][i]
@hiroshiperera7107
@hiroshiperera7107 7 жыл бұрын
Hi Nice videos. Thank you very much for posting them. :) Have you done an example how 3AC codes will be worked out for Arrays? If so can youe please mention me the video and if not prepared can you prepare a video for that as well.
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey dear...Happy to help you :) I will soon prepare the video on TAC for arrays! Till then stay tuned!! All the best...Keep learning :)
@hiroshiperera7107
@hiroshiperera7107 7 жыл бұрын
hi... If possible can you let me know the 3AC code for c[i][j]=a+b.
@Er_Sahitya_Sharma
@Er_Sahitya_Sharma 4 жыл бұрын
Why have you use 4*i and what is the use of 4*i ?
@SADDAMHUSSAIN-cd9ve
@SADDAMHUSSAIN-cd9ve 8 жыл бұрын
how to generate the short circuit TAC for nested WHILE and FOR loop.Please upload the video on same ASAP.
@LearnVidFun
@LearnVidFun 8 жыл бұрын
I appreciate your learning... The generation is to be done in the same way as explained in the videos....But still if it's required I will make another video on such problems.... All the best...Keep learning :) Regards
@goyalluckhnawi
@goyalluckhnawi 7 жыл бұрын
In array representation ... y we r only taking 4*i nd nt sme other integer*i?
@LearnVidFun
@LearnVidFun 7 жыл бұрын
This question requires a comprehensive explanation....I will record another video answering this question :) For now just remember it! All the best...Keep learning :)
@akshayasaravanan1119
@akshayasaravanan1119 7 жыл бұрын
why is It 4*I? is it applicable to all array probs?
@LearnVidFun
@LearnVidFun 7 жыл бұрын
This question requires a comprehensive explanation....I will record another video answering this question :) For now just remember it! All the best...Keep learning :)
@saumyasingh4326
@saumyasingh4326 6 жыл бұрын
are we multiplying 4 becoz integer is of 4btye of size in this compiler?
@navtejsingh727
@navtejsingh727 6 жыл бұрын
kindly do this ASAP
@adityasoni121
@adityasoni121 6 жыл бұрын
Arrays are stored in a continuous manner so to get the next mem block we do size*
@anujad9137
@anujad9137 7 жыл бұрын
Amazing!! Really these notes nd videos helped me alot thankuh so much sir 😊😊!!is there any video for backpatching?
@LearnVidFun
@LearnVidFun 7 жыл бұрын
I will soon upload the video on backpatching! Stay tuned... :) All the best...Keep learning :)
@maheshhasbi5888
@maheshhasbi5888 6 жыл бұрын
thank you very much sir....your doing a grete job
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Thanks a lot buddy for your appreciation! Happy to help you :) All the best...Keep learning :)
@adityamahlawat8315
@adityamahlawat8315 7 жыл бұрын
can you please tell the three address code generation for 2D Array in short so that i can remember it?
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy....I will record another video on this topic!! Stay tuned...All the best...Keep learning :)
@shubhamagarwal5566
@shubhamagarwal5566 5 жыл бұрын
At 26:44, there should a "goto Last" after the second if statement
@vasubhatt6160
@vasubhatt6160 4 жыл бұрын
agreed.
@tahamaaftab6412
@tahamaaftab6412 7 жыл бұрын
can you please help to slove this problem: construct a DAG for the Following statement Z=X-Y+X*Y*U-V/W+X+V
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey dear! I appreciate your learning attitude! Are you not able to solve this problem after watching the tutorial ? Please watch the DAG video once again and try the problem because I feel it's quite easy and more over we have covered such problems in the tutorial... If any doubt still exists, then please let me know I will mail you the solution !! All the best...Keep learning :)
@tahamaaftab6412
@tahamaaftab6412 7 жыл бұрын
construction for DFA ab*|ba* sorry for again distrub can you please slove n send my email 786tahama@gmail.com this problem
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Okay..I will send it to you!! But tell me... Are ab* and ba* two separate expressions or it's a single expression?
@tahamaaftab6412
@tahamaaftab6412 7 жыл бұрын
single expression
@RahulSingh-hw3ln
@RahulSingh-hw3ln 7 жыл бұрын
In Solution of problem no. 5 both T1 and T3 will be 4*i?
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy...It's just that the TAC we have written is not optimized!! So, there is nothing wrong with it! After the code will be optimized, the redundant statements will be removed....If you want, you can remove it! I hope it was helpful... All the best...Keep learning :)
@RahulSingh-hw3ln
@RahulSingh-hw3ln 7 жыл бұрын
one more question why its "4*i" and not just "i" ?
@LearnVidFun
@LearnVidFun 7 жыл бұрын
This question needs an elaborated explanation...Currently, you simply remember that it's 4*i for solving questions...However, I will soon create a separate video answering this question... All the best...Keep learning :)
@RahulSingh-hw3ln
@RahulSingh-hw3ln 7 жыл бұрын
LearnVidFun Ok thanks
@coolmridul
@coolmridul 8 жыл бұрын
Great videos!!! Nicely Explained
@LearnVidFun
@LearnVidFun 8 жыл бұрын
Thank you... :)
@kaminikumari6432
@kaminikumari6432 6 жыл бұрын
Really awesome videos, very helpful.
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Thanks dear! Happy to help you :D All the best...Keep learning :)
@sandysharma2858
@sandysharma2858 7 жыл бұрын
u are a life savior
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Happy to help you dear... All the best...Keep learning :)
@VC-kj9yx
@VC-kj9yx 7 жыл бұрын
4*i because i is an integer which requires 4 bytes??
@LearnVidFun
@LearnVidFun 7 жыл бұрын
This question requires a comprehensive explanation....I will cover it in my upcoming videos!!! For now, just remember it as a rule!! All the best...Keep learning :)
@saisurajaitha6597
@saisurajaitha6597 7 жыл бұрын
hi can you please send me the notes of compiler design.please do it as soon as possible as we have exam in 2 days,your notes will definitely help us and also why do we write 4*i ???
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey dear...For getting the video notes...please visit our blog by clicking the following link: learnvidfuncompilerdesignnotes.blogspot.in All the best...Keep learning :)
@johncarter7930
@johncarter7930 7 жыл бұрын
will u provide videos on principle of programming languages
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy...Once I complete the ongoing lecture series...I will take up this subject as well... All the best...Keep learning :)
@aheteshammansuri2871
@aheteshammansuri2871 6 жыл бұрын
Sir u had explained very nicely :).. keep up doing the good work and come with more lectures in future on other topics :)
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Hey buddy! We will keep putting efforts to provide you such content! All the best...Keep learning :)
@himanshuyadav9327
@himanshuyadav9327 7 жыл бұрын
nice lectures sir Thank you soooo much
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Thanks a lot buddy for your appreciation :)
@technicalmona3520
@technicalmona3520 7 жыл бұрын
bro you are a saviour
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Happy to help you dear!! All the best...Keep learning :)
@KushChoudhary
@KushChoudhary 5 жыл бұрын
in step 4 and 5 can't we just write x=x+1 ? Someone?
@nahidfaraji5069
@nahidfaraji5069 4 жыл бұрын
Thank you so much for your effort sir
@DayaRaors
@DayaRaors 6 жыл бұрын
Amazing dude, it helps a lot, nowhere did i find a compilation of these many problems, these are just like the Standard gate problems, you need not go for a writer tool because your handwriting itself is an amazing font, very well explained. I have a doubt in DBMS, regarding the use of NOT EXISTS clause in 3-level sub-queries, it would be of great help if you upload a video on that aswell. Thanks in advance. :)
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Thanks a lot dear...!!! Your appreciation really motivates me to do more for everyone!! All the best....Keep learning :)
@shitaldhanba1132
@shitaldhanba1132 5 жыл бұрын
plz tell us three code generation for two dimensional array!!
@OmitA25
@OmitA25 6 жыл бұрын
best explanation.............
@niharikaarroju
@niharikaarroju 7 жыл бұрын
plz upload the video of syntax directed transition
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey dear...I will definitely try to upload it soon!! All the best...Keep learning :)
@shikhagwalbans8788
@shikhagwalbans8788 7 жыл бұрын
how ti equals to 4*i..I didn't understood dis
@LearnVidFun
@LearnVidFun 7 жыл бұрын
This question needs an elaborated explanation...Currently, you simply remember that it's 4*i for solving questions...However, I will soon create a separate video answering this question... All the best...Keep learning :)
@SameedUsmani47
@SameedUsmani47 7 жыл бұрын
Thanks bro awesome lecture but plz minimize saying right in mid.
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy...Thanks for liking the videos... I will try to minimize saying it in the upcoming videos :) All the best...Keep learning :)
@krishangaurav3077
@krishangaurav3077 7 жыл бұрын
very helpful sir!
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Happy to help you...Keep learning :)
@achin4140
@achin4140 8 жыл бұрын
sir i liked your videos a lot , sir i beg you please sir i touch your feet please also tell about Symbol tables and Run time Administration and Peephole Optimization
@LearnVidFun
@LearnVidFun 8 жыл бұрын
Thank you so much for liking the videos...I appreciate your learning! I will try to upload the videos on the above topics soon...Keep learning! :)
@ankitsharma-qo8yy
@ankitsharma-qo8yy 7 жыл бұрын
sir please send me notes of compiler ankitsharmak85@gmail.com and i liked your video explain are very good ank
@kaushikraina8138
@kaushikraina8138 7 жыл бұрын
Awesome work bro
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Thanks a ton buddy... All the best...Keep learning :)
@godtothanksmary8149
@godtothanksmary8149 6 жыл бұрын
That's Good but it will be better if you explain it in English because some one may not understand you what you are talking about including me.
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Thanks a lot dear for your constructive feedback! We have already started uploading new videos in English like those of Data Structures ! We hope you like them! All the best...Keep learning :)
@satishlariya9804
@satishlariya9804 7 жыл бұрын
Please give the notes for compiler
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy...The notes have been mailed to you...Kindly check! All the best..Keep learning! :)
@saisuryaprasadammu7715
@saisuryaprasadammu7715 6 жыл бұрын
Very nice video
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Thanks dear for the appreciation! All the best...Keep learning :)
@janarddansarkar3447
@janarddansarkar3447 6 жыл бұрын
Please explain about three address code for arrays with example
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Hey buddy! We will try to cover more examples in the upcoming videos! Stay tuned to watch those videos :) All the best...Keep learning :)
@janarddansarkar3447
@janarddansarkar3447 6 жыл бұрын
thank you
@rahulchaubey8988
@rahulchaubey8988 5 жыл бұрын
Bhai do while loop me semicolumn missing h.
@johncarter7930
@johncarter7930 7 жыл бұрын
Hello Sir, Kindly make a tutorial on Back patching in compiler
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy...I will try to provide it soon...All the best....Keep learning :)
@sidhugautam23298
@sidhugautam23298 8 жыл бұрын
kindly mail compiler notes at himanshug.co@nsit.net.in At 36:43 I don't think there is need to do T3=4*i as we can use T1=4*i already has required value. Thus one step is reduced
@LearnVidFun
@LearnVidFun 8 жыл бұрын
Hey buddy..The notes have been mailed to you...Kindly check! Regarding your doubt: Yes, you are write that step is not required. The point here is that the code that we have generated is not optimized. When the code will be sent for optimization, the optimizer will remove that step and other unnecessary steps, if any to give the optimized code. All the best..Keep learning! :)
@tushargupta3962
@tushargupta3962 7 жыл бұрын
nice work bro!!
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Thanks...Keep learning :)
@vibhabadhe4843
@vibhabadhe4843 7 жыл бұрын
very gud and helpful
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Happy to help you...Keep learning! :)
@KULDEEPSINGH-rh3go
@KULDEEPSINGH-rh3go 6 жыл бұрын
At 36:15 why T1=4*i and T2= 4*i why not T1=i and T2= i please explain
@LearnVidFun
@LearnVidFun 6 жыл бұрын
For now, just remember it...I shall be creating a separate video on this! If the size occupies by an array element in memory is x bytes then, you will write it as x*i I hope it helps! All the best...Keep learning :)
@akhilreddy2894
@akhilreddy2894 8 жыл бұрын
Sir loved to learn ur lessons sir will u please upload some more important topics in compiler design about object code generation and all which are useful for btech 3 year students
@LearnVidFun
@LearnVidFun 8 жыл бұрын
Thank you so much for liking the videos...I will surely keep making such videos...! Keep learning..All the best :)
@ManishSharma-fi2vr
@ManishSharma-fi2vr 2 жыл бұрын
❤Thank You!!
@mogillavinay6189
@mogillavinay6189 7 жыл бұрын
sir can we have ppl subject also
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey dear...Thanks for your interest....Once I finish the ongoing lectures series...I will go for the "Principles of Programming Language" lectures series....!!! Till then stay tuned by subscribing yourself to the channel....All the best.....Keep learning :)
@himanshuyadav9327
@himanshuyadav9327 7 жыл бұрын
Thank you soooo much sir - I got mail sir
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Happy to help you... Enjoy!! Keep learning :)
@FormulaEntertainment101
@FormulaEntertainment101 6 жыл бұрын
thanks
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Happy to help you dear! All the best...Keep learning :)
@aaryanraj5089
@aaryanraj5089 4 жыл бұрын
Plz explain how t1:=4*i question no 5
@aaryanraj5089
@aaryanraj5089 4 жыл бұрын
Plzz jldi btao sir
@prasadbembde7566
@prasadbembde7566 4 жыл бұрын
Thanku
@vineshtallatalla1335
@vineshtallatalla1335 7 жыл бұрын
Bro ...please provide me the notes as soon as possible
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey dear...For getting the video notes...please visit our blog by clicking the following link: learnvidfuncompilerdesignnotes.blogspot.in All the best...Keep learning :)
@zehrxsyed
@zehrxsyed 5 жыл бұрын
thank you
@vamsikandregula5564
@vamsikandregula5564 7 жыл бұрын
i need acd entire notes
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy...For getting the video notes...please visit our blog by clicking the following link: learnvidfuncompilerdesignnotes.blogspot.in All the best...Keep learning :)
@Dynamic.programing
@Dynamic.programing 5 жыл бұрын
39:00Sir t1=4*i q likhe h here 4 is size of integer
@priyasatapathi6263
@priyasatapathi6263 4 жыл бұрын
Dirctly x=x+1 nahi likh sakte in q 1
@UkRrh
@UkRrh 3 жыл бұрын
super
@sriyansh100
@sriyansh100 6 жыл бұрын
What is your age?
@LearnVidFun
@LearnVidFun 6 жыл бұрын
Well buddy! I have revolved 25 times around the sun! Hahaaa...I hope you got that! All the best...Keep learning :)
@mostafasazid
@mostafasazid Жыл бұрын
awesomeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
@amulyanarravula1332
@amulyanarravula1332 4 жыл бұрын
take it as a suggestion...pls speed up ur speech na...its too dead slow...i hav to listen it in 1.25x speed
@ChandraKanth7
@ChandraKanth7 7 жыл бұрын
You can do it this way also... paste.ee/p/Sn29E
@LearnVidFun
@LearnVidFun 7 жыл бұрын
Hey buddy... As I had already mentioned, yes, this is also a right way to solve the problem!!! I hope it was helpful...!! All the best...Keep learning :)
@ChandraKanth7
@ChandraKanth7 7 жыл бұрын
LearnVidFun Ya anyways Awesome videos.. Keep up this great work.. 👍👍
@khushmeeet
@khushmeeet 8 жыл бұрын
osoom !
@LearnVidFun
@LearnVidFun 8 жыл бұрын
Thanks :)
@nikhilbodduluri535
@nikhilbodduluri535 7 жыл бұрын
can u explain in english
@LearnVidFun
@LearnVidFun 7 жыл бұрын
I am really sorry buddy for the inconvenience caused to you!!
@rajatsharma8817
@rajatsharma8817 7 жыл бұрын
😂😂😂😂
@LearnVidFun
@LearnVidFun 7 жыл бұрын
I hope the above smilies signifies your happiness and enthusiasm for learning :D :D
@vivekrai4811
@vivekrai4811 5 жыл бұрын
Thanks
basic blocks and flow graphs in compiler design
17:54
Sudhakar Atchala
Рет қаралды 140 М.
Officer Rabbit is so bad. He made Luffy deaf. #funny #supersiblings #comedy
00:18
Funny superhero siblings
Рет қаралды 19 МЛН
1 сквиш тебе или 2 другому? 😌 #шортс #виола
00:36
DAG representation of a basic block||construction of dag from basic blocks
14:04
Shift Reduce Parsing in Compiler Design Explained step by step
27:50
Compiler Design: DAG Representation of Basic Blocks
14:17
Anita R
Рет қаралды 177 М.
Compiler Design: Basic Blocks and Flow Graphs
11:16
Anita R
Рет қаралды 155 М.
Что такое операционная система и как она работает
2:01:08
Officer Rabbit is so bad. He made Luffy deaf. #funny #supersiblings #comedy
00:18
Funny superhero siblings
Рет қаралды 19 МЛН