Bhanu Priya has Published 1581 Articles

C program to display the prime numbers in between two intervals

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:11:35

8K+ Views

Enter two numbers at console during runtime. Then, declare the flag variable which is used to check whether the number is prime or not with the help of for loop condition.Whenever, the flag is zero, it prints the prime number and if flag is one, it exists from the loop.ProgramFollowing ... Read More

Find the sum of first and last digit for a number using C language

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:02:58

3K+ Views

The sum of first and last digit for a number can be calculated if we use the below mentioned algorithm in C programming language.AlgorithmRefer an algorithm given herewith −START Step 1: Declare no, sum variables of type int Step 2: Read a number at runtime Step 3: Compute sum=no%10 Step ... Read More

Explain the different sections in C language

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:01:41

8K+ Views

C program is defined by set of protocols that are to be followed by a programmer, while writing the code.SectionsThe complete program is divided into different sections, which are as follows −Documentation Section − Here, we can give commands about program like author name, creation or modified date. The information ... Read More

What is the use of randomize and srand functions in C language?

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 10:00:14

243 Views

If we are generating random numbers in a program, it is necessary to control the series of numbers.The randomize() and srand() functions are used to seed the random number generator.The process of assigning the random number generators starting number is called seeding the generators.The randomize() uses PC’s clock to produce ... Read More

State the difference between memcmp and memicmp functions in C language

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 09:58:55

278 Views

Memcmp() and memicmp() compares first n bytes of two blocks of memory.memcmp() performs comparison as unsigned characters.memicmp() performs comparison as characters but, ignore upper case or lower case letters.Both functions return an integer value.Two memory buffers are equal (returns 0).First buffer is greater than second (returns >0).First buffer is less ... Read More

C Program to count vowels, digits, spaces, consonants using the string concepts

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 09:56:06

8K+ Views

An array of characters (or) collection of characters is called a string.DeclarationRefer the declaration given below −char stringname [size];For example − char a[50]; string of length 50 characters.InitializationThe initialization is as follows −Using single character constant −char a[10] = { ‘H’, ‘e’, ‘l’, ‘l’, ‘o’ ,‘\0’}Using string constants −char a[10] = ... Read More

C program to display only the lower triangle elements in a 3x3 2D array

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 09:54:15

285 Views

Let’s take the input of 3x3 matrix, means total 9 elements, in 2D array using keyboard at runtime.With the help of it and for loops, we can display only lower triangle in 3X3 matrix.The logic to print lower triangle elements is as follows −for(i=0;i=2nd index          printf("%d", ... Read More

C program to sort an array of ten elements in an ascending order

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 09:53:00

13K+ Views

An array is a group of related data items that are stored with single name.For example, int student[30];Here, student is an array name which holds 30 collection of data items, with a single variable name.OperationsThe operations of an array are explained below −Searching − It is used to find whether ... Read More

C program to find if the given number is perfect number or not

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 09:50:23

4K+ Views

Perfect number is the number; whose sum of factors is equal to 2*number.AlgorithmAn algorithm is explained below −START Step 1: declare int variables and initialized result=0. Step 2: read number at runtime. Step 3: for loop i=1;i

Explain the characteristics and operations of arrays in C language

Bhanu Priya

Bhanu Priya

Updated on 15-Mar-2021 09:45:42

8K+ Views

An array is a homogeneous sequential collection of data items over a single variable name.For example, int student[30];Here, student is an array name holds 30 collection of data item, with a single variable name.CharacteristicsThe characteristics of arrays are as follows −An array is always stored in consecutive memory location.It can ... Read More

Advertisements