-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathmultiply.xml
More file actions
executable file
·51 lines (36 loc) · 955 Bytes
/
multiply.xml
File metadata and controls
executable file
·51 lines (36 loc) · 955 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>* (multiply)</name>
<category>Math</category>
<subcategory>Operators</subcategory>
<usage>Web & Application</usage>
<example>
<image></image>
<code><![CDATA[
int e = 50 * 5; // Sets 'e' to 250
int f = e * 5; // Sets 'f' to 1250
]]></code>
</example>
<description><![CDATA[
Multiplies the values of the two parameters. Multiplication is equivalent to a sequence of addition. For example 5 * 4 is equivalent to 5 + 5 + 5 + 5.
]]></description>
<syntax>
<c>value1</c> * <c>value2</c>
</syntax>
<parameter>
<label>value1</label>
<description><![CDATA[int, float, byte, or char]]></description>
</parameter>
<parameter>
<label>value2</label>
<description><![CDATA[int, float, byte, or char]]></description>
</parameter>
<returns></returns>
<related>
+ (addition)
/ (divide)
</related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>