answersLogoWhite

0

What is programming flowchart?

Updated: 8/11/2023
User Avatar

Wiki User

14y ago

Best Answer

#include<stdio.h>

#include<conio.h>

main()

{

int z[10];

int love;

for(int y=0;y<=9;y++)

{

printf("Input %d:",y+1);

scanf("%d", &z[y]);

}

for(int a=0;a<=9;a++)

for(int b=0;b<a;b++)

for(int d=a;d>b;d--)

if(z[b]>z[d]){

love=z[b];

z[b]=z[d];

z[d]=love;

}

printf("\nResult: ");

for(int c=0;c<=9;c++){

printf("%d\t",z[c]);

}

getch();

}

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

7y ago

Flowcharting helps programmers plan and plot out how the logic of the program is supposed to work.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

A flowchart is the visualization of an algorithm.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is programming flowchart?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Who uses flowchart in programming?

Timothy J. Jensen


Is flowchart is the programming tools?

no. so shut up.


What is the Difference between program and flowchart?

Flowchart it is diagrammatic Program it is coding. A flowchart is drawn out on paper, and shows the logic of an if/then/else statement. The programming actually is the if/then/else, not just the logic.


How do you do calculation on programming flowcharts?

You just have to know the symbols of flowchart and make the graphical representation of algorithm


Advantages of algorithm over flowchart?

what are the advantages of algorithm over flowchart algorithm is a step by step procedure of a particular program either in pure english programming language or in english programming style. while a flowchart is a pictorial representation of an algorithm. why algorithm is better? the answer is very simple, as algorithm are concise and compact. it gives the basic idea behind the program. why flowchart is better? the answer to it is...being graphical it is easy to understand th methodology of program and can be reviewed as well as corrected easily.


What is a diagram that graphically depicts the steps that take place in a program?

Flowchart pg 32 Programming Logic and Design by Tony Gaddis


What are the uses the uses of flowchart?

Ease of visualization, organizationally. In computer programming, flow charts are used to logically set up inputs and outputs and organize the program.


Difference between macor flowchart and micro flowchart?

1. Macro flowchart shows less information whereas micro flowchart shows more information. 2. Macro flowchart is easy to design as comparative to micro flowchart. 3. Macro flowchart is difficult to study and understand as comparative to micro flowchart.


What is the basic symbol in flowchart?

there is no basic symbol in flowchart


Define flowchart and draw flowchart for GCD of two numbers?

pictorial representation of a program is called a flowchart


What will the beginners prefer to choose between flowchart and algorithm?

Flowchart.


When should you use flowchart?

Use a flowchart when you want to visualize a process.