What is a program flowchart?



What is a program flowchart?..

Answer / Sumit Batham

A program flowchart is a graphical representation of a computer program's logical structure. It uses symbols and arrows to illustrate the sequence of operations, decisions, and loops in a program.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

a sequence of bytes with one to one corrspondence to those in the external device a) sequential addressing b) address c) byte code d) none

1 Answers  


give one ip, find out which contry

4 Answers   Google,


what is the use of getch() function in C program.. difference b/w getch() and getche()??

29 Answers   HCL, IBM, Infosys, TCS, Wipro,


Explain what is the difference between functions getch() and getche()?

1 Answers  


what is a non volatile key word in c language?

1 Answers  


Describe the difference between = and == symbols in c programming?

1 Answers  


When do we get logical errors?

1 Answers  


what is the difference between exit() and _exit() functions?

2 Answers  


Disadvantages of C language.

1 Answers   Impetus,


Do string constants represent numerical values?

1 Answers  


atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation

0 Answers  


Write an implementation of “float stringToFloat(char *str).” The code should be simple, and not require more than the basic operators (if, for, math operators, etc.). • Assumptions • Don’t worry about overflow or underflow • Stop at the 1st invalid character and return the number you have converted till then, if the 1st character is invalid return 0 • Don’t worry about exponential (e.g. 1e10), instead you should treat ‘e’ as an invalid character • Write it like real code, e.g. do error checking • Go though the string only once • Examples • “1.23” should return 1.23 • “1a” should return 1 • “a”should return 0

6 Answers   Qualcomm,


Categories