Algorithm in C

 

Algorithm in C:

An algorithm is a set of instructions used in programming to examine a problem and create a step-by-step process to solve it. Describe this process as a list of instructions that can be stated in everyday English. An algorithm is a set of instructions like this.

 

Example of Algorithm:

1)Write an algorithm to solve c=a + b.

Ans:

Step 1:Start.

Step 2:Read the value of a and b.

Step 3:Put the value of a, b into equation c=a + b.

Step 4:Print the value of c.

Step 5:End.

 

2)Write an algorithm to find the largest number between two number. 

Ans:
Step 1:Start.
Step 2:Read the value of a, b.
Step 3:If a is greater than b then print a.
Step 4:If b is greater than a then print b.
Step 5:End,

3)Write an algorithm to find the factorial of a given number.

Ans:
Step 1:Start.
Step 2:Read the value of n.
Step 3:For i=1 to n repeat the following step.
           a.if (n%i=0) then print the value of i.
Step 4:End.

Comments