Flowchart Flowchart can said as a graphical representation of an algorithm. The only difference is you need to draw symbols in flowchart in the place of writing steps. 1. Graphical representation of any program is called flowchart. 2. There are some standard graphics that are used in flowchart as following: Figure: Start/Stop terminal box Figure: Input/output box Figure: Process/Instruction box Figure: Lines or Arrows Figure: Decision box Figure: Connector box Figure: Comment box Figure: Preparation box Figure: Separate box Write a algorithm to find out number is odd or even.
Definition: - Algorithm is a stepwise solution to any problem which is used in programming to create a knowledge of steps to write a program. A sequential solution of any program that written in human language, called algorithm. Algorithm is first step of the solution process, after the analysis of problem, programmer write the algorithm of that problem. As Algorithm goes in sequence it is written in steps for example: - Write a algorithm to find out number is odd or even? Ans. step 1 : start This Represents Starting of Algorithm. step 2 : input number This is for input which is inserted by user or given in program by default. step 3 : rem=number mod 2 rem is defined as variable which is storing the Result of number mod 2 step 4 : if rem=0 then print "number even" else ...
The identifiers are user defined names used in programs for providing names to variables, arrays and functions. The identifiers are made up of letters(uppercase and lowercase), digits and underscore(_). For Example, int max ; //max is an identifier which have datatype integer int max2; //this is second identifier of same datatype string max_3; //you can also use identifier like this with different datatype and underscore float 4max ; //you can not declare identifier like this this will generate an error The C is case sensitive and hence the uppercase and lowercase letters are not treated as same. For Example, int max=20 ;// this is a different variable which assigns a value 20 to max int Max=10 ; //this is different variable which assigns a value 10 to Max Identifiers also used to identify functions. For Example, int Add() ; //this is a Function which is created for addition of two integer; Program Aim : - This Program will help you ...
Comments
Post a Comment