How do you write arrays and for loops in pseudocode

How do you write this code in pseudocode? Please help!

int a_num[4];

for (int n = 0; n <= 3; n ++)
a_num[n] = b_num % 10;
b_num = b_num / 10;
Pseudocode is an artificial and informal language

http://www.unf.edu/~broggio/cop2221/2221pseu.htm

Pseudocode is an informal high-level description of the operating principle of a computer program or other algorithm.

https://en.wikipedia.org/wiki/Pseudocode

Basically you just take away the formality of formal code and you have pseudocode.
Topic archived. No new replies allowed.