Mathematical Functions In C language
FUNCTIONS In c Language
A function is a self-contained block of code that performs a particular task. Once a function has been designed and packed, it can be treated as a ’black box’ that takes some data from the main program and returns a value. The inner details of operation are invisible to the rest of the program. All that program knows about a function is: what goes...
Read moreProgram Development cycle In C langauage
Program Development cycle
Problem Definition: In this phase, we define the problem statement and we decide the boundaries of the problem. In this phase we need to understand the problem statement, What is our requirement, what should be the output of the problem solution? These...
Read moreHow to write a program in C to find the root of a Quadratic Equation
How to write a program in C to find the root of a Quadratic Equation
In this example the value of a,b,c are given we have to just put formula
You can do this problem via accepting values of a,b,c from user and then show the final output
CODE-
#include<stdio.h>
int main()
{
int...
Read moreFunctions In C
FUNCTIONS In c Language
A function is a self-contained block of code that performs a particular task. Once a function has been designed and packed, it can be treated as a ’black box’ that takes some data from the main program and returns a value. The inner details of...
Read moreDraw A Flowchart and Algorithm to find the Factorial of A number
Draw A Flowchart and Algorithm to find the Factorial of A number
we will draw Flowchart and Algorithm to find the factorial of number .
DECLARATIONS-
fact=factorial
num= number that we accept from user as input.
(fact*=n
n++) formula to find factorial
Algorithm
Step...
Read moreHow to draw a flowchart & Algorithm to display odd and even number in c language
How to draw a flowchart to display odd and even number in c language
Note- there was a mistake in above Image (N%2=0)
Algorithm to show odd and even number in C language
step 1: start
Step 2:declare variables N
Step 3:read variables
Step 4:if N%2=0
Step...
Read moreHow to draw a flowchart to display positive or negative number in c
How to draw a flowchart to display odd or even number in c
Algorithm
step1: start
step2: Declare variables N
Step3: read variables N
step4:if N>0
step5: display N is positive
step6: else
step7: display N is negative
step8:st...
Read more
Subscribe to:
Posts
(
Atom
)