C/C++ Compiler for Android OS.

In this post we will learn about the application C4Droid application which can help you run and compile C/C++ programs on Android. This is the simplest C/C++ compiler for Android OS. Features of C/C++ compiler for Android: Offline C compiler: create your own applications on Android device and run them even without Internet access Source … Read more

MySQL skip slave error in GTID based Replication

In this post I will share the smartest way to skip slave error like duplicate entry, missing rows etc. in MySQL GTID based replication. In normal replication it is quite easy to skip an error but in GTID based it becomes quite tricky to do the same. The traditional method of inserting a empty transaction … Read more

RSA algorithm in C easy implementation

Today we will write a program to implement RSA algorithm in C programming language, so let’s first understand what is RSA algorithm. What is RSA Algorithm? RSA is one of the first practical public-key cryptosystems and is widely used for secure data transmission. In such a cryptosystem, the encryption key is public and differs from … Read more

Download Turbo C++ for Windows 11, 10, 7, 8

Here you can download Turbo C++ version 3.2 which works for windows 7, 8, 8.1 and 10. The best part is it works in full screen mode even with 32 bit or 64 bits. Follow the steps below to download it and do the necessary set up.  Steps to download Turbo C++ for Windows: Download … Read more

N Queens problem implementation in Python

What is N Queens Problem? The N Queens problem is: How can N queens be placed on an NxN chessboard so that no two of them attack each other? The eight queens puzzle is the problem of placing eight chess queens on an n x n chessboard so that no two queens threaten each other. Thus, a … Read more