What is Pseudocode? Tccicomputercoaching.com
Pseudocode is a simple way of writing programming code in English. Pseudocode is not actual programming language. It uses short phrases to write code for programs before you actually create it in a specific language. What is difference between Pseudocode and Algorithm?
An algorithm is a systematic logical approach used to solve problems in a computer while Pseudocode is the statement in plain English which may be translated later into a programming language (program). Let we understand with one simple example through Loop Coding: For loop Code:
for( int i = 0; i < SIZE; ++i ) { Statement/block to be repeat }
Pseudocode: