About The Series
Coding in C++ as a beginner is all about getting the understanding of simple but major concepts (complex topics are for more advanced classes) and laying that sturdy foundation for good practices. Grasping the basics early on helps with gaining a solid C++ base knowledge when coding advanced stuff later on - like data structures for example.
In this C++ live coding series I will be completing some very basic beginner friendly programs and live recording myself doing so. Each video will be added to YouTube and will only be accessible via blog posts. The outline of the series is given below and links to each blog post (with the video) will be updated as I complete them.
I will be covering programs related to strings, conditions, loops and switch cases. More complex and difficult programs to come in the future also. Expect more programs related to arrays too!
I will be covering programs related to strings, conditions, loops and switch cases. More complex and difficult programs to come in the future also. Expect more programs related to arrays too!
C++ LIVE CODING SERIES OUTLINE
C++ basic program examples
- C++ Program to Print “Hello, World!” - Setting up C++ in VSCODE(explanation)
- C++ Program to Add Two Integers (paired with program 3 below)
- C++ Program to Swap Values of Two Variables.
- C++ Program to Multiply two Floating Point Numbers (paired with program 5 below)
- C++ Program to perform all arithmetic operations.
- C++ Program to convert feet to meter.
- C++ Program to convert celcius to farenheit.
- C++ Program to convert farenheit to celcius.
- C++ Program to find the Size of data types.
- C++ Program to Print ASCII Value.
- C++ Program to Calculate Area of Circle.
- C++ Program to Calculate Area of Square.
- C++ Program to Calculate Area of Rectangle.
- C++ Program to convert days to years, weeks and days.
List of C++ string program examples
- Write C++ program to concatenate two strings
- Write C++ program to find string length
- Write C++ program to convert a string to Lower case
- Write C++ program to convert a string to Upper case
- Write C++ program to change string to upper case without strupr
- Write C++ program to change string to lower case without strlwr
- Write C++ program to reverse a string enter by user
- Write C++ program to count number of alphabets, digits and special characters in string
- Write C++ program to compare two strings using strcmp
List of conditional C++ program examples
- C++ Program to check whether an integer entered by the user is odd or even
- C++ Program to find the largest number among three number.
- C++ Program to Find the Largest Number using Conditional Operator.
- C++ Program to find the Largest among Three Variables using Nested if.
- C++ program to check leap year using conditional Operator.
- C++ program to check alphabets using conditional operator.
- C++ program to check number is positive, negative or zero.
- C++ program to check uppercase or lowercase alphabets.
- C++ program to check entered character vowel or consonant.
- C++ program to check whether a character is alphabet, digit or special character.
- C++ program to print day name of week.
- C++ program to accept two integers and check whether they are equal or not.
- C++ program to detrermine a candidate’s age is eligible for casting the vote or not.
- C++ program to find the eligibility of admission for an engineering course based on the criteria.
- C++ program to calculate the total marks, percentage and division of student.
- C++ program to enter month number and print number of days in month.
- C++ program to count total number of notes in entered amount.
- C++ program to check whether a triangle can be formed by the given value for the angles.
List of switch case C++ program examples
- Write C++ program to print number of days in a month using switch case
- Write C++ program to print day of week name using switch case
- Write C++ program to create calculator using switch Statement
- Write C++ program to check even or odd number using switch case
- Write C++ program to check vowel or consonant using switch case
- Write C++ program to print gender (Male/Female) program according to given M/F.
- Write C++ Program to find maximum number using switch case.



No comments:
Post a Comment