how can you write statements to form a program?
Answers
Answered by
0
Explanation:
A program written in such a language is formed by a sequence of one or more statements.
...
Some programming languages provide a general way of grouping statements together, so that any single <statement> can be replaced by a group:
Algol 60: begin <sequence> end.
Pascal: begin <sequence> end.
C, PHP, Java: { <sequence> }
Answered by
1
Answer:
A program written in such a language is formed by a sequence of one or more statements.
...
Some programming languages provide a general way of grouping statements together, so that any single <statement> can be replaced by a group:
Algol 60: begin <sequence> end.
Pascal: begin <sequence> end.
C, PHP, Java: { <sequence>
Similar questions