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 |
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
give one ip, find out which contry
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()?
what is a non volatile key word in c language?
Describe the difference between = and == symbols in c programming?
When do we get logical errors?
what is the difference between exit() and _exit() functions?
Disadvantages of C language.
Do string constants represent numerical values?
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
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