C++: From Scratch to High-Performance Applications
C++: From Scratch to High-Performance Applications, available at $44.99, has an average rating of 4.07, with 70 lectures, based on 7 reviews, and has 94 subscribers.
You will learn about Create objects, classes, and member functions in C++ Manipulate variables and conduct arithmetic operations on them Master debugging techniques to ensure that your application is always running smoothly Familiarize yourself with console mode and GUI mode for application development Use various toolkits/libraries for large-scale application development Get acquainted with the new C++17 features Identify code-smells, clean up, and refactor legacy C++ applications Build portable cross-platform applications using standard C++ features This course is ideal for individuals who are This course is aimed at novice C++ developer, an Application developer who are keen to learn a new language, as well as its use in application development. It is particularly useful for This course is aimed at novice C++ developer, an Application developer who are keen to learn a new language, as well as its use in application development.
Enroll now: C++: From Scratch to High-Performance Applications
Summary
Title: C++: From Scratch to High-Performance Applications
Price: $44.99
Average Rating: 4.07
Number of Lectures: 70
Number of Published Lectures: 70
Number of Curriculum Items: 70
Number of Published Curriculum Objects: 70
Original Price: $199.99
Quality Status: approved
Status: Live
What You Will Learn
- Create objects, classes, and member functions in C++
- Manipulate variables and conduct arithmetic operations on them
- Master debugging techniques to ensure that your application is always running smoothly
- Familiarize yourself with console mode and GUI mode for application development
- Use various toolkits/libraries for large-scale application development
- Get acquainted with the new C++17 features
- Identify code-smells, clean up, and refactor legacy C++ applications
- Build portable cross-platform applications using standard C++ features
Who Should Attend
- This course is aimed at novice C++ developer, an Application developer who are keen to learn a new language, as well as its use in application development.
Target Audiences
- This course is aimed at novice C++ developer, an Application developer who are keen to learn a new language, as well as its use in application development.
Being a general-purpose programming language, C++ has imperative, object-oriented and generic programming features, while also providing facilities for low-level memory manipulation. Learning the skills to be biased toward system programming and embedded programming, resource-constrained, and large systems, with performance, efficiency, and flexibility of use are essential building blocks of application development.
This course takes a practical and incremental approach. It helps you gain deep knowledge on how to design and build an amazing application using C++. It will first teach you how to set up the environment, where you’ll write your very first program. Then you’ll gently move onto some advanced and interesting topics such as Object-Oriented Programming, Inheritance, and Memory Allocation. Moving further, you will gain an in-depth analysis of classes and the associated OOP concepts, which will empower you to implement the concepts of object-oriented programming (OOP) in real life scenarios. Finally, you will learn to build portable cross-platform applications using the latest C++ features.
Contents and Overview
This training program includes 2 complete courses, carefully chosen to give you the most comprehensive training possible.
The first course, Getting Started with C++ Programming begins by introducing you to the essentials of C++. You will learn how to set up the environment, where you’ll write your very first program. You’ll then work with the basic components and standard library functions that make up the language, and from there, you’ll gently move onto some advanced and interesting topics such as Object-Oriented Programming, Inheritance, and Memory Allocation (all of which will help with better performance and testing). This course is designed and developed so you seamlessly get acquainted with C++ and begin developing applications in no time.
The second course, Building Blocks of Application Development with C++will introduce you to object-oriented programming (OOP). It includes an in-depth analysis of classes and the associated OOP concepts, which will empower you to implement the concepts of object-oriented programming (OOP) in real life scenarios. It also provides you with the essential know-how to tackle challenges while writing your code. Toward the end of each section, you’ll be introduced to the practical implementation of the concepts.
The third course, High-Performance Applications with C++will help you master your developing skills with C++. With real-world, practical examples explaining each concept, the course will begin by introducing you to the latest features in C++ 17. It encourages clean code practices in C++ in general and demonstrates the GUI app-development options in C++. By the end of the course, you’ll have an in-depth understanding of the language and its various facets.
About the Authors:
-
Richard Snyderis currently working as a Senior Software Engineer and writes a diverse amount of computer software applications. Working as an engineer requires the ability to be adaptable to the customer needs to be based on the requirements they give for the computer application to be built. This enables a wide range of technical knowledge to be used from front-end design, middle tier, or back-end development. As a software engineer, Richard uses his years of experience working in technologies such as C/C++/C#, Java, Perl, Python, Groovy on Grails, Ruby on Rails, PHP, HTML, JavaScript, CSS, MongoDB, SQL Server, Oracle, and MySQL to design the best fitting application for the customer’s needs.
-
Biplab Kumar Modak is an open source software developer. He has 20 years of software development experience in various languages. He is one of the core developers of Code::Blocks—an open source, cross-platform IDE that supports various compilers. He has over 10 years’ experience in open source development with C++. He is also familiar with various popular languages such as C, C#, Visual Basic, VBA, Pascal, Python, and R. He has over 15 years of experience with C++. His grasp and capability in C++ is highly credited.
He is also interested in database-related development, OpenGL, Multi-threaded programming, and web development. His open source development stints have taught him how to deal with multiple compilers on various operating systems. They also helped him develop a better understanding on the subject. When it comes to delivering theory along with practical usage of C++ on various platforms, he considers himself one of the most suitable one to show you the practical side of application development with C++.
Course Curriculum
Chapter 1: Getting Started with C++ Programming
Lecture 1: The Course Overview
Lecture 2: How to Start a Project in Microsoft Visual Studio .NET
Lecture 3: Basic Usage and Outline of the IDE
Lecture 4: Structure of a C++ Program
Lecture 5: What is a Variable and What Are the Different Types?
Lecture 6: How to Initialize and Use a Variable in a Program
Lecture 7: Using Variable to Create a Calculator Program
Lecture 8: What is a Conditional Statement ?
Lecture 9: If Else Statement
Lecture 10: Nested If and Composite Conditions
Lecture 11: Switch Statements
Lecture 12: Ternary Operators
Lecture 13: What is a Loop?
Lecture 14: while Loop
Lecture 15: do while Loop
Lecture 16: for Loop
Lecture 17: Nested Loop
Lecture 18: Input and Output (I/O)
Lecture 19: User Input
Lecture 20: Input Stream from File
Lecture 21: Output Stream to File
Lecture 22: Defining Function
Lecture 23: Function Examples
Lecture 24: Pass-By-Reference or Value
Lecture 25: Defining Data Structures and Classes
Lecture 26: Arrays
Lecture 27: Vectors
Lecture 28: Maps
Lecture 29: Custom Class
Chapter 2: Building Blocks of Application Development with C++
Lecture 1: The Course Overview
Lecture 2: Class
Lecture 3: Inheritance, Overloading, and Polymorphism
Lecture 4: Exercise
Lecture 5: Abstraction and Encapsulation
Lecture 6: Interfaces
Lecture 7: Exercise
Lecture 8: Templates
Lecture 9: Namespaces
Lecture 10: Exception Handling
Lecture 11: C++ Preprocessor
Lecture 12: Function Pointer
Lecture 13: Exercise
Lecture 14: Text File – The Human Readable Format
Lecture 15: Binary File – The Machine Readable Format
Lecture 16: Exercise
Lecture 17: Standard Containers
Lecture 18: Strings
Lecture 19: Streams Objects
Lecture 20: Mathematical Functions
Lecture 21: Exercise
Chapter 3: High Performance Applications with C++
Lecture 1: The Course Overview
Lecture 2: Creating Threads with the Pthreads Library
Lecture 3: Writing a Multithreaded Application
Lecture 4: Using std::thread in an Object-Oriented Fashion
Lecture 5: Synchronizing Threads
Lecture 6: Mutex
Lecture 7: Deadlock
Lecture 8: Conditional Variable
Lecture 9: Writing a Simple Hello World Program
Lecture 10: Concurrency Tasks
Lecture 11: Google Test Framework
Lecture 12: Writing First Test Case Using Google Test Framework
Lecture 13: Developing an RPN Calculator Application
Lecture 14: Testing a Piece of Legacy Code
Lecture 15: Installing cucumber-cpp in Ubuntu
Lecture 16: Building and Executing the Test Cases
Lecture 17: Writing First Cucumber Test Case
Lecture 18: Debugging Our Application Using GDB
Lecture 19: Debugging Memory Leaks with Valgrind
Lecture 20: Detecting Memory Leaks
Instructors
-
Packt Publishing
Tech Knowledge in Motion
Rating Distribution
- 1 stars: 0 votes
- 2 stars: 0 votes
- 3 stars: 2 votes
- 4 stars: 4 votes
- 5 stars: 1 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Language Learning Courses to Learn in November 2024
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024