
About Me
Hi, I’m Lillie. Previously a magazine editor, I became a full-time mother and freelance writer in 2017. I spend most of my time with my kids and husband over at The Brown Bear Family but this blog is for my love of food and sharing my favorites with you!
Subscribe to My Blog
Get new content delivered directly to your inbox.
Exception Handling in C++
Exception is an abnormal behavior of the program during runtime.
It will occur when the user gives input to the program something that is out of the scope.
How to host a static website on Github
What is Github? GitHub is a code hosting platform for version control and collaboration. It lets you and others work together on projects from anywhere. This tutorial teaches you GitHub essentials like repositories, branches, commits, and Pull Requests. You’ll create your own Hello World repository and learn GitHub’s Pull Request workflow, a popular way to create and review code.…
Templates in C++
A template is keyword in C++ that is used to make your function or class generalize as far as the data type is a concern.
Template keyword used before function and class.
Feature Title
This is a feature block that you can use to highlight features.
Feature Title
This is a feature block that you can use to highlight features.
C language
Pure Virtual Functions and Abstract Classes in C++
A class is an abstract class if it will contain at least one virtual function.
We can’t create the object of the Abstract class because if we create the object of the abstract then we can also call the function of virtual that is virtual function has no definition. To stop the calling of virtual function c++ can create rule that is we cannot create an object of the abstract class.
Virtual Function in C++
A virtual function is a member function of the parent class that is defined by using the “virtual ” keyword. These functions derived by the child class and call by the pointer or object of the parent class. And execute the derived class of the function.
Top Resources for Computer Science Learning
For self-starters interested in technology, there have never been so many options for free online education List Of Best Resources for Online Learning Competitive Programming HackerRank provides you a good platform to solve coding problems with inbuilt compiling and execution platform. HackerEarth is a website which provides you an environment to prepare for the interviews…