-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathsemicolon.xml
More file actions
executable file
·52 lines (32 loc) · 1019 Bytes
/
Copy pathsemicolon.xml
File metadata and controls
executable file
·52 lines (32 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>; (semicolon)</name>
<category>Structure</category>
<subcategory></subcategory>
<usage>Web & Application</usage>
<example>
<image></image>
<code><![CDATA[
int a; // Declaration statement
a = 30; // Assignment statement
println(i); // Function statement
]]></code>
</example>
<description><![CDATA[
A statement terminator which separates elements of the program. A statement is a complete instruction to the computer and the semicolon is used to separate instructions (this is similar to the period "." in written English). Semicolons are also used to separate the different elements of a <b>for</b> structure.
]]></description>
<syntax>
<c>statement</c>;
</syntax>
<parameter>
<label>statement</label>
<description><![CDATA[a single statement to execute]]></description>
</parameter>
<returns></returns>
<related>
for
</related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>