Please enable JavaScript.
Coggle requires JavaScript to display documents.
Concept of Algorithm, Flow Chart & C Programming - Coggle Diagram
Concept of Algorithm, Flow Chart & C Programming
Flowchart
Process
Predefined Process
Decision Making
Looping
Input/Output
Connector
Start/Stop
Flow Direction
Algorithm
Output "average of 3 integers"
Output "Input of 3 integers"
Start
Input a,b,c
Ave a+b+c/3
Output " average is" ave
Stop
C Programming
void main ()
{ int a,b,c ;
clrscr;
float ave;
include <conio.h>
include <stdio.h>
Printf('