Monday 5 June 2017

What is Pseudocode Tccicomputercoaching.com



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:

for( assign initial values; condition; increment )
{
    //stuff to repeat
}
To know more about Programming Languages
Visit us once @ tccicomputercoaching.com
Call us @ 98256 18292.

No comments:

Post a Comment