C++ question:
What is pseudocode? Where/why would you use pseudocode within (or as part of) the source code of a C++ program?
Hey,
Note: Brother in case of any queries, just comment in box I would be very happy to assist all your queries
Pseudocode is code that does not necessarily have the
correct syntax for any programming language and
cannot be used immediately; however, it helps a programmer to map
out how to go about solving a problem in writing that looks like
code.
Essentially, pseudocode helps one to write actual code such as C++.
Pseudocode is often written out on paper to quickly jot down an
idea and if it is verified to be correct, will be implemented in an
actual programming language.
We often use pseudocodes as comments in source code so that when we are tracking back the program to either extend it or fix it then the pseudocode written in comments could help us to know what the line exactly mean in english.
Kindly revert for any queries
Thanks.
C++ question: What is pseudocode? Where/why would you use pseudocode within (or as part of) the...