-
-
Notifications
You must be signed in to change notification settings - Fork 173
Expand file tree
/
Copy pathassign.xml
More file actions
executable file
·58 lines (37 loc) · 1.36 KB
/
Copy pathassign.xml
File metadata and controls
executable file
·58 lines (37 loc) · 1.36 KB
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
53
54
55
56
57
58
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root>
<name>= (assign)</name>
<category>Structure</category>
<subcategory></subcategory>
<usage>Web & Application</usage>
<example>
<image></image>
<code><![CDATA[
int a;
a = 30; // Assigns for value 30 to the variable 'a'
a = a + 40; // Assigns the value 70 to the variable 'a'
]]></code>
</example>
<description><![CDATA[
Assigns a value to a variable. The "=" sign does not mean "equals", but is used to place data within a variable. The "=" operator is formally called the assignment operator. There are many different types of variables (int, floats, strings, etc.) and the assignment operator can only assign values which are the same type as the variable it is assigning. For example, if the variable is of type <b>int</b>, the value must also be an <b>int</b>.
]]></description>
<syntax>
<c>var</c> = <c>value</c>
</syntax>
<parameter>
<label>var</label>
<description><![CDATA[any valid variable name]]></description>
</parameter>
<parameter>
<label>value</label>
<description><![CDATA[any value of the same type as the variable. For example, if the variable is of type "int", the value must also be an int]]></description>
</parameter>
<returns></returns>
<related>
+= (add assign)
-= (subtract assign)
</related>
<availability>1.0</availability>
<type>Operator</type>
<partof>PDE</partof>
</root>