- 1
What is the structure of any code
any
4 Réponses
+ 5
Please clarify. What do you want to know?
+ 2
you have to specify the language
+ 1
Depends of yours.
Example: html != python ⚠️They have diferent structure ⚠️
+ 1
in brief every code (not all languages) but mostly consists of
1. expression like 4 + 5 or X +y solving it returns value
2. statement. like ++a; or z =x+y; or any thing ending with semicolon ;
3. block of statements between { } like loops , if condition ..
4. function it is a group of statments
for specifics purpose ..