kurly Brackets
kurly Brackets
  • 22
  • 238 993
Mastering the Goto Statement in C++ | Explained with Examples | URDU / HINDI
Welcome to our comprehensive guide on the powerful "goto statement" in C++. In this tutorial, we delve into the usage, syntax, and benefits of using the goto statement, demystifying its purpose and dispelling any myths surrounding it.
The goto statement is a controversial feature in C++, but understanding its correct usage can enhance your coding skills and make your programs more efficient. Whether you're a beginner or an experienced developer, this video will equip you with the knowledge you need to use the goto statement effectively.
Topics covered in this video:
Introduction to the goto statement: We'll explore what the goto statement is and why it exists in C++.
Syntax of the goto statement in C++: Understanding the correct syntax is crucial to using it correctly.
How to use the goto statement in C++: Practical examples of using the goto statement to improve code readability and maintainability.
When to use the goto statement: We discuss scenarios where using the goto statement can lead to cleaner and more efficient code.
Common pitfalls and misconceptions: We address the misunderstandings surrounding the goto statement and how to avoid common mistakes.
Comparison with other control statements: A comparison of goto with other control statements like continue, break, and loops.
Real-life examples: We present real-life code snippets and demonstrate how the goto statement can be applied effectively.
Our aim is to provide a clear understanding of the goto statement, allowing you to make informed decisions when incorporating it into your C++ programs. Join us in mastering this powerful feature and unleash its potential in your coding journey.
Don't forget to like, share, and subscribe to our channel for more insightful programming tutorials. Happy coding!
#C++ #GotoStatement #ProgrammingTutorial #CodeEfficiency #LearnC++
zhlédnutí: 1 044

Video

ternary operator c++ | c++ ternary operator example
zhlédnutí 1,8KPřed rokem
#ternaryoperator #cpp #cplusplusprogramming #cplusplustutorial If the condition is true the ternary operator returns first value otherwise it returns second value. For more clear understanding watch video and practice the questions given at the end of the video 0:14 Ternary Operator 2:00 Example1 05:35 Example 2 09:08 Your Asignment
logical operators c++ | AND OR NOT operators c++ | && || != Operators with examples
zhlédnutí 2KPřed rokem
#logicaloperators #logicaloperator #cppprogramming Logical operators in c are used to check the conditions in if statement. There three logical operators AND, OR, NOT. We will learn in this c lecture with examples. 0:33 Not Operator 1:40 OR Operator 05:24 AND Operator 08:40 Example1 12:48 Your Asignment
binary operation c++ | what is binary operator | binary operator example
zhlédnutí 2KPřed rokem
#binaryoperation #binaryoperator #cplusplusprogramming Binary operators are special symbols in c that operate on two variables. They are classified: 1. Arithmetic Operator - * / % 2. Asignment Operators = = -= *= /= 3. Relational Operators which are used for comparison 0:11 Operators 1:16 Binary Operators 1:55 Arithmetic Operators 05:00 Relational Operators 07:33 Asignment Operators We will lea...
increment and decrement operators in c++ with examples | prefix and postfix in c++
zhlédnutí 2,9KPřed rokem
#postfix #prefix #c #programming #malikshahzaib Increment operator ads one in the variable and decrement operator subtracts one from the variable. These have two types postfix and prefix. We will learn in the lecture with examples. Solve the questions given at the end of the lecture! Happy C Learning
recursion c++ | recursive function example c++ | find factorial, fibonacci series, Reverse and Power
zhlédnutí 2,3KPřed rokem
#recursion #c Calling a function inside the same function is known as recursion and this function is known as recursive function. Normally, we use loops for repetition but recursion is also a technique that can be used for repetition. Recursion has two types: 1. Direct Recursion: A function calls itself 2. Indirect Recursion: First function is called in second function and then second function ...
break and continue statements in c++ with examples | Malik Shahzaib
zhlédnutí 1KPřed rokem
#breakstatement #continuestatement #c In C the break statement is used to stop the loops or switch statements and the continue statement is used to skip one iteration of loop. These are very useful statements. You should learn these statements. For more watch complete video and solve the tasks given at the end
reserved keywords in c++ | c++ keywords | define keyword in c++ | what is keyword in c++
zhlédnutí 697Před rokem
#keywordsc #c A keyword is a reserved word that is already used by the computer in programming. We cannot use it for declaring the variables or functions. There are total 95 keywods in c language. For more information please watch complete video and ask any question in comments. Thankyou!!
Create a Tic Tac Toe Game Program in C++ | Complete Project Tutorial | Download with Source Code
zhlédnutí 1,1KPřed rokem
Welcome to our tutorial on creating a Tic Tac Toe game in C ! This video is perfect for anyone looking to enhance their programming skills. We will guide you through every step, from setting up your development environment to writing efficient code using 2D arrays. In this tutorial, you'll learn: • How to develop a Tic Tac Toe game in C • Coding with 2D arrays in C • Implementing game functions...
Basics of Terrain in unity Hindi / Urdu
zhlédnutí 340Před rokem
Basics of Terrain in unity
file handling c++ part3 | 12 Examples | what is file handling? | file handling in c++ example
zhlédnutí 9KPřed rokem
#filehandlingc #whatisfilehandling #filehandlinginc Join Malik Shahzaib for a comprehensive exploration of C file handling. From basics to advanced concepts, learn to code and manipulate files effectively. With practical examples and output demonstrations, master file operations and understand key functions like seekg, seekp, tellg, and tellp. Whether you're new to file handling or looking to e...
file handling c++ | what is file handling? | file handling in c++ tutorial | c++ file manipulation
zhlédnutí 19KPřed rokem
#filehandlingc #whatisfilehandling #filehandlinginc Join Malik Shahzaib in this comprehensive tutorial on file handling in C . From an introduction to advanced techniques, explore file operations, manipulation, and creation. Learn about seekg, seekp, tellg, tellp, file pointers, stream classes, and more. Elevate your C skills with practical examples and clear explanations. Don't miss this essen...
file handling c++ | what is file handling? | file handling in c++ tutorial | c++ file manipulation
zhlédnutí 40KPřed rokem
#filehandlingc #whatisfilehandling #filehandlinginc Join Malik Shahzaib in this comprehensive tutorial on file handling in C . Whether you're a beginner or an experienced programmer, this video covers everything you need to know about working with files in C . Learn the basics of file handling, including what it is and why it's important. Explore practical examples of file operations in C , suc...
Happy Birthday Faizan | Batch 01 Unity3d Game Development Course in Pakistan
zhlédnutí 520Před 2 lety
I have collected memories and summed up in this video, Maybe after few years you will be watching and will keep remember these good moments of life of this game development course! We wish goodluck for your future life! Stay Blessed Faizan
inheritance in c++ in hindi | inheritance c++ | inheritance in c++ | inheritance in oop
zhlédnutí 35KPřed 3 lety
#inheritencec #inheritanceinc #inheritanceinoop inheritance in c in hindi | inheritance c | inheritance in c | inheritance in oop Also subscribe to my other channels @MalikShahzaibOfficial and @TravelWithShahzaib
How to download and setup MonoDevelop ide in Unity 2020 | monodevelopunity
zhlédnutí 18KPřed 4 lety
How to download and setup MonoDevelop ide in Unity 2020 | monodevelopunity
turing machine for palindrome | turing machine problems | turing machine for even & odd palindrome
zhlédnutí 12KPřed 4 lety
turing machine for palindrome | turing machine problems | turing machine for even & odd palindrome
turing machine example | design turing machine examples with solutions | turning machine in automata
zhlédnutí 7KPřed 4 lety
turing machine example | design turing machine examples with solutions | turning machine in automata
turing machine for anbncn hindi urdu | turing machine a^nb^n example in toc thoery of automata
zhlédnutí 7KPřed 4 lety
turing machine for anbncn hindi urdu | turing machine a^nb^n example in toc thoery of automata
Basics of Turing Machine in Hindi urdu | formal definition of turing machine lecture in hindi
zhlédnutí 10KPřed 4 lety
Basics of Turing Machine in Hindi urdu | formal definition of turing machine lecture in hindi
switch statement c++ in hindi urdu example program | what is switch case in cpp
zhlédnutí 22KPřed 4 lety
switch statement c in hindi urdu example program | what is switch case in cpp
c++ switch statement | break in switch statement | cpp switch statement how to use switch statement
zhlédnutí 43KPřed 4 lety
c switch statement | break in switch statement | cpp switch statement how to use switch statement

Komentáře

  • @moeedulhaq7097
    @moeedulhaq7097 Před 11 hodinami

    4-5 vedios dekhi thin is sy pehly.. kisi ki smj nai thi ai.. iski bhtt asani sy smj ai... Kamallll...🔥

  • @kurlyBrackets
    @kurlyBrackets Před 7 dny

    ~-~~-~~~-~~-~ Download Source code = drive.google.com/file/d/1-kKom-xoysBgIOcfvjUdhWAaa4aErUPR/ ~-~~-~~~-~~-~

  • @SaifulIslam-vi7cy
    @SaifulIslam-vi7cy Před 7 dny

    I done this project to watch your video. But still I face some bug. Though I write code same to same you still facing some problem. Could you give the source code link

    • @kurlyBrackets
      @kurlyBrackets Před 7 dny

      Source code = drive.google.com/file/d/1-kKom-xoysBgIOcfvjUdhWAaa4aErUPR/

  • @HammadAbbasi-pn7kq
    @HammadAbbasi-pn7kq Před 11 dny

    Nice❤❤❤❤❤

  • @MuhammadShahid-1509l
    @MuhammadShahid-1509l Před 14 dny

    Nice video ! I have first time commented on someone's video.Keep it up your way of teaching is very impressive and engaging, brother!

  • @UmarFarooq-kw9ux
    @UmarFarooq-kw9ux Před 26 dny

    sir oop ka complete course hy ?

  • @SyedOuanKazmi07
    @SyedOuanKazmi07 Před měsícem

    Question no 4 #include<iostream> using namespace std; int main(){ int num ; cout<<"Input the number "<<endl; cin>>num; string result = (num<4) ? "Invaild" : ((num*5)>5) ? "Greater" : "less"; cout<<"The result is "<<result<<endl; return 0; }

  •  Před měsícem

    provide the source code

    • @kurlyBrackets
      @kurlyBrackets Před 7 dny

      Source code = drive.google.com/file/d/1-kKom-xoysBgIOcfvjUdhWAaa4aErUPR/

  • @SyedOuanKazmi07
    @SyedOuanKazmi07 Před měsícem

    Q1 = -19 Q2 = -167

  • @SyedOuanKazmi07
    @SyedOuanKazmi07 Před měsícem

    Question 4 ma even part ma "< = > " ma switch statement nhi lag rehe agr kisi sy howa switch statement laga kr to sand kr dy

  • @user-mk9tr2mb9y
    @user-mk9tr2mb9y Před měsícem

    iss vedio ne muje like dene pe majbor kar dia

  • @user-mk9tr2mb9y
    @user-mk9tr2mb9y Před měsícem

    muje laga file handling maloom nahi kon sa bra toofan he mgar app ki pichli vedio ne sri mushkil asn kar dia

  • @AyyankhanKhan-bv6vi
    @AyyankhanKhan-bv6vi Před měsícem

    Hello sir can you give me the source code of this project sir plzzz i really need it

  • @HafizUmair-d6x
    @HafizUmair-d6x Před měsícem

    Thanks sir

  • @HafizUmair-d6x
    @HafizUmair-d6x Před měsícem

    Thanku sir

  • @AasmaniKhazana
    @AasmaniKhazana Před měsícem

    the only youtuber i have ever seen in youtube Thank you sir I have learned discreate mathematic from you also and now you have cleared my all doubts about oop . thank you

  • @muhammadtaha8172
    @muhammadtaha8172 Před měsícem

    Well done 👍✅ first time explain completely some one such a very Good way 😉 Dear brother Allah bless you Always 👍 ameen

  • @Feeqag
    @Feeqag Před měsícem

    zabardast video

  • @PunjabiMunda313-d5
    @PunjabiMunda313-d5 Před měsícem

    Your 10 minutes is equal University 2 weeks study

  • @PunjabiMunda313-d5
    @PunjabiMunda313-d5 Před měsícem

    Mashallah Your teaching Style is fabulous

  • @user-pd1vg7iy2i
    @user-pd1vg7iy2i Před měsícem

    Very good teaching style..... ❤💯💯

  • @Muqaramrajpoot
    @Muqaramrajpoot Před měsícem

    Good bohot acha tha sir

  • @fizach1013
    @fizach1013 Před měsícem

    First time programming easy lgi.. Such an applicable method ❤... Bht Acha smjaya ha 😍

  • @maryamarshad63
    @maryamarshad63 Před měsícem

    ap plz ak lacture polymorphism pa b dn mugy ap ki bhot sai smj ati ha

  • @motivationalvideo2474
    @motivationalvideo2474 Před měsícem

    Bhi bhoot acha method ha ap ka or Cat ke awaz bare achi nkal laty han hahaha BTW muje description ma se link nai mil raha quizz ka

  • @itsdreamyedits
    @itsdreamyedits Před měsícem

    Literally this lecture helped me a lot, the concept of file handling is delivered amazingly❤‍🩹

  • @BULLETNOXI
    @BULLETNOXI Před 2 měsíci

    your course is so good ♥

  • @CpmWorkTraining
    @CpmWorkTraining Před 2 měsíci

    Thanks bro ❤

  • @basitnaeem7207
    @basitnaeem7207 Před 2 měsíci

    Sir ma vu ka student cs304 course apki is playlist se cover kar sakte hain?

  • @wahajali_forever
    @wahajali_forever Před 2 měsíci

    Sir can u do it in object oriented programming

  • @user-ki6bw8vp6w
    @user-ki6bw8vp6w Před 2 měsíci

    Sir mujhy sirf ap ke programing ke samjh aate hy sir please yai course agay continue karen

  • @zainhassan9154
    @zainhassan9154 Před 2 měsíci

    Level ha ksm sa bhai apka love you ❤

  • @Baaghhh
    @Baaghhh Před 2 měsíci

    thank you bhai Jaan

  • @umarhanjra7604
    @umarhanjra7604 Před 2 měsíci

    Monday ko paper h mera or ye video dhek k file handling smhj ma a gai thnx sir

    • @kurlyBrackets
      @kurlyBrackets Před 2 měsíci

      good luck😊❤️ achha attempt kijiye ga 😊

  • @naikjutt8408
    @naikjutt8408 Před 2 měsíci

    Level ha boss apka even ke mere university ke sir se bi zyada🎉❤

  • @RafaqatUllah-co9xr
    @RafaqatUllah-co9xr Před 2 měsíci

    Bro. Please post a video on polymorphism .I understand your lectures much better than others. ❤

  • @Kashmiri169
    @Kashmiri169 Před 2 měsíci

    I'm your big fan Sir mene ap k lecture sy c++ puri sikh li hy aur tic tac toe game b bna li hy ab me mazeed games bnana chahta hu

  • @Kashmiri169
    @Kashmiri169 Před 2 měsíci

    Assalamualaikum sir first of all i am your big fan And secondly sir mene ap k lectures dekh k puri c++ sikh li hy aur tic tac toe game b bna li hy ab mujhy mazeed games bna k iss field me aagy jana hy Please guide me 🙏

  • @farwa-qf9iv
    @farwa-qf9iv Před 3 měsíci

    Watched different videos on this topic but didn't understand well. But you did it so efficiently. Thanks alot.

  • @AyeshaIshfaqSheikh
    @AyeshaIshfaqSheikh Před 3 měsíci

    jazakAllah hu khair

  • @nadirkhokhar1998
    @nadirkhokhar1998 Před 3 měsíci

    Yarrrr sir jii keya bat hy

  • @user-xe6oy6pz1w
    @user-xe6oy6pz1w Před 3 měsíci

    Assignment no 2 ka answer: b=19 c=72 a=-53 c=-143

  • @user-xe6oy6pz1w
    @user-xe6oy6pz1w Před 3 měsíci

    Assignment no 1 ka solution: b=11 c=10 a=1 c=-19

  • @stylingwithrmf5258
    @stylingwithrmf5258 Před 3 měsíci

    Phil DFA iss topic py itni achi explaination dekhi thank you

  • @SadaqatAli-op8bl
    @SadaqatAli-op8bl Před 3 měsíci

    Amazing bro 👏

  • @MuhammadImran-gt6ir
    @MuhammadImran-gt6ir Před 3 měsíci

    KYA BATT HAI SIR

  • @nasreenafzal8614
    @nasreenafzal8614 Před 3 měsíci

    JazakAllah sir ap bohat acha perhate hain 🫠💗 muje class mai samj nhi ayi thi apke lecture lene ke baad muje file handling ki samj agyi

  • @SajidAli-lc4lc
    @SajidAli-lc4lc Před 3 měsíci

    Good method

  • @newtechnologytips4686
    @newtechnologytips4686 Před 3 měsíci

    Good Teaching behaviour

  • @user-vz2tr7ww1o
    @user-vz2tr7ww1o Před 3 měsíci

    sir ap ki smjh jaldi a jati h