Algorithms - Pseudocode Convention

Note that this conventions are not complete rules for writing algorithms. These are the widely accepted conventions for uniformity and clarity among global audience. Comment starts with //. Statement ends with ; For block statement, the statement must be enclosed within { .. } Identifier rules: An identifier can only start with letter (A-Z, a-z) or underscore( _ ) symbol. An identifier can contain alphabet, digits(0-9), and underscore only....

Jan 3, 2020 · 3 min · Arjun Adhikari