Bhanu Priya has Published 1449 Articles

Explain the deletion of element in linked list

Bhanu Priya

Bhanu Priya

Updated on 26-Mar-2021 06:40:12

714 Views

Linked lists use dynamic memory allocation i.e. they grow and shrink accordingly. They are defined as a collection of nodes. Here, nodes have two parts, which are data and link. The representation of data, link and linked lists is given below −Operations on linked listsThere are three types of operations ... Read More

C program to calculate the standard deviation

Bhanu Priya

Bhanu Priya

Updated on 25-Mar-2021 11:48:20

6K+ Views

Standard deviation is used to measure deviation of data from its mean. The mathematical formula to calculate the standard deviation is as follows −$$s=\sqrt{Variance}$$whereVariance$$=\frac{1}{n}\:\:\displaystyle\sum\limits_{i=1}^n (x_{i}-m)^{2}$$and$$m=mean=\frac{1}{n}\:\displaystyle\sum\limits_{i=1}^n x_{i}$$AlgorithmRefer an algorithm given below to calculate the standard deviation for the given numbers.Step 1 − Read n items.Step 2 − Calculate sum and mean ... Read More

C program to find the median of a given list.

Bhanu Priya

Bhanu Priya

Updated on 25-Mar-2021 11:39:46

19K+ Views

If the elements of the list are arranged in order, then, the middle value which divides the items into two parts with equal number of items on either side is called the median.Odd numbers of items have just one middle value whereas; even numbers of items have two middle values.The ... Read More

C Program to represent a multiplication table.

Bhanu Priya

Bhanu Priya

Updated on 25-Mar-2021 11:35:48

891 Views

ProblemWrite a program to print the multiplication table from 1 x 1 to 12 x 10 as given below −1 2 3 4 5 6 7 8 9 10 2 4 6 8 ……………….20 3 6 9…………………….30 4 8 12 16……………..40 - - - 12 24……………………..120SolutionUse two do while loops ... Read More

C program to calculate range of values and an average cost of a personal system.

Bhanu Priya

Bhanu Priya

Updated on 25-Mar-2021 11:31:49

727 Views

ProblemA personal system is sold at different costs by the vendors.Let’s take the list of costs (in hundreds) quoted by some vendors −25.00, 30.50, 15.00, 28.25, 58.15, 37.00, 16.65, 42.00 68.45, 53.50SolutionCalculate the average cost and range of values.The difference between the highest and the lowest values in the series ... Read More

C program to print characters and strings in different formats.

Bhanu Priya

Bhanu Priya

Updated on 25-Mar-2021 11:22:17

16K+ Views

An algorithm is given below to explain the process which is included in the C programming language to print the characters and strings in different formats.Step 1: Read a character to print.Step 2: Read a name at compile time.Step 3: Output of characters in different formats by using format specifiers.printf("%c%3c%5c", ... Read More

C Program to calculate the salesmen salary with macro functions.

Bhanu Priya

Bhanu Priya

Updated on 25-Mar-2021 11:18:21

2K+ Views

ProblemA laptop manufacturing company has the monthly compensation policy for their salespersons as mentioned below −Minimum base salary: 3000.00Bonus for every computer sold: 200.00Commission on the total monthly sales: 5 per centSince the prices of laptops are changing, the sales price of each laptop is fixed at the beginning of ... Read More

C program to find out cosine and sine values using math.h library.

Bhanu Priya

Bhanu Priya

Updated on 25-Mar-2021 11:15:44

6K+ Views

ProblemTo find the cosine and sine values for every 10 degrees from 0 to 150.SolutionThe logic used to find the cosine values is as follows −Declare MAX and PI value at the starting of a programwhile(angle

How to multiply two matrices using pointers in C?

Bhanu Priya

Bhanu Priya

Updated on 25-Mar-2021 11:11:05

14K+ Views

Pointer is a variable that stores the address of another variable.Features of PointersPointer saves the memory space.The execution time of a pointer is faster because of the direct access to a memory location.With the help of pointers, the memory is accessed efficiently i.e. memory is allocated and deallocated dynamically.Pointers are ... Read More

Write a C program to print all files and folders.

Bhanu Priya

Bhanu Priya

Updated on 25-Mar-2021 11:06:11

1K+ Views

File is a collection of records (or) a place on hard disk where the data is stored permanently.By using C commands, we can access the files in different ways.Operations on filesGiven below are the operations which can be performed on files in the C programming language −Naming the fileOpening the ... Read More

Advertisements