C Program for deletion of an element from the specified location from Array

In this tutorial, we will write a C program to delete elements from an array at a specified position. We will specifically learn two different programs: Example: By position. InputInput array elements: 11 22 30 42 50Specify the position to delete: 3 OutputArray elements: 11 22 42 50 Example: By Value. InputInput array elements: 11 … Read more

Program to Reverse the Array Elements in C

In this tutorial, we will learn C Program to Reverse an Array element. Before continuing, you should have knowledge of the following topics in C programming. Revering an array element: The entered array of integers will be reversed and displayed. Example: Input: arr = {1, 2, 3, 4, 5, 6} Output: Reversed arr: {6, 5, … Read more

Neon Number in Java

In this tutorial, we will write two programs for the Neon number in Java. Program to check whether the nuber neon number or not in Java Display all the neon numbers within the specified range in java. Neon Numbers A number is said to be a neon number if the sum of the digits of … Read more

C Program to Search an Element in an Array

In this tutorial, we will write a program to search an element in an array in C. There are various ways or algorithms to search an element in an array, we will use linear search. Before going further, you should have knowledge of the following topics in C programming. Explanation: We will create a program … Read more

sizeof() operator in C

The sizeof operator in C is commonly used to determine the size of an expression or data types. It is a compile-time unary operator that returns the size of the memory allocated to that data type. sizeof operator is not used with primitive data types but can also be used with the pointer data type, … Read more

C Program to Check whether the entered character is capital, small letter, digit or special character

In this tutorial, we will write a program to check whether the entered character is capital, small letter, digit or any special character using C programming. Here, we will write two different C program, 1. Using library function The following C program Check whether the entered character is capital, small letter, digit or special character … Read more