Sunday, February 28, 2021

How to Learn Programming in Faster Way?

Learning to program isn't something you can do in an afternoon, but it doesn't have to be a life's work, either. There are lots of things you can do to make it easier on yourself when you are learning to program. You already know about The 5 Most Common Problems New Programmers...

Sunday, November 24, 2019

How to Create Your own Header Files and Use it to your Program?

Header files are the containers which contains function declarations and definitions. Each header file contains some functions and for using that function we have to include the header file. As for example: for using scanf() and printf() function into our program, we have...

Friday, November 22, 2019

Twisted Prime Number - Summary, Program and Check

A number is said to be a Twisted Prime Number if its reverse is also a prime number. As for Example: 2, 11, 101, 107, 113, 149, 151 etc are Twisted Prime Numbers. As for example let us consider about number 107. 107 is a Prime Number and its reverse 701 too is also a prime...

Thursday, November 21, 2019

Twisted Prime Number upto a Given Range Program and Algorithm

A number is said to be a Twisted Prime Number if its reverse is also a prime number. As for Example: 2, 11, 101, 107, 113, 149, 151 etc are Twisted Prime Numbers. As for example let us consider about number 107. 107 is a Prime Number and its reverse 701 too is also a prime...