Python program for text to speech

In this post we will write a program to convert text to speech in Python. Some people have difficulty reading large amounts of text due to dyslexia and other learning disabilities. Some people have basic literary levels. They often get frustrated trying to browse the internet because so much of it is in text form … Read more

Convert Octal to Hexadecimal in C++

In this post, firstly we will understand how to convert an Octal number to Hexadecimal number, then we will implement the same using C++ programming language. Let’s first understand how the conversion works: How to Convert Octal to Hexadecimal? When converting from octal to hexadecimal, it is often easier to first convert the octal number … Read more

A simple Zombie War Game in C++

Here I’ve shared a basic Zombie War Game in C++, it is a very simple game and understand the code will definitely help you learn C++. Just go through the code, it is pretty self explanatory.  Program for Zombie War Game in C++: #include <iostream> #include <stdlib.h> #include <unistd.h> #include <time.h> using namespace std; int … Read more