C Program to find which number is not present in second array

C Program To Find Which Number Is Not Present In Second Array

In this tutorial we will see, Given two arrays 1,2,3,4,5 and 2,3,1,0,5 find which number is not present in the second array. Means in general in this tutorial, you will learn how to write C program to find the missing number in second array. This program is very simple and easy. As we have fixed … Read more

C Program to check given String is palindrome or not

C Program To Check Given String Is Palindrome Or Not

In this tutorial, you will learn writing program in the C to check whether a given string is palindrome or not . The Complete logic behind to check whether a given string is palindrome or not: Now before moving on writing the program first you should know What is String palindrome? A String is called … Read more

Anagram program in C with explanation

In this tutorial, you will learn how to write a program in the C to check the given strings are Anagram or not. The Complete logic behind it is : Now before moving on writing the program first you should also know What is Anagram in String? Two strings can be called Anagram if the … Read more

C program to count the occurrences of a character in a string

C Program To Count The Occurrences Of Given Character In a String

Ans:  In this tutorial, you will learn writing program to  count occurrences of a character in a string. The Complete logic behind to count character in a string is given below : How our program will behave? Our program will take a string as an input. A string could be with space or without space.And … Read more

Prime number program in C with explanation

C Program to Check given number is Prime number or not

In this tutorial we are going to learn how to write a program to check whether a given integer number by user is a prime number or not in C programming language. If given number is prime then our logic will assign value 0 to a temp variable and will print “number is prime” and … Read more

C Program to Check a Given Number is an Armstrong or not

C Program To Check The Given Number Is Armstrong Or Not

In this tutorial, we are going to learn how to write a program in c to check a given input number is Armstrong or not?So before moving directly on the writing program, I will recommend you please first know : What is Armstrong Number? Example of Armstrong number Lets see it practically by calculating it, … Read more