From 7e0f021a9aec35fd8e6725e87e3313b101d26f5e Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 27 Jan 2008 11:37:44 +0100 Subject: Initial import (2.0.2-6) --- reference/C/SYNTAX/comma.html | 60 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 reference/C/SYNTAX/comma.html (limited to 'reference/C/SYNTAX/comma.html') diff --git a/reference/C/SYNTAX/comma.html b/reference/C/SYNTAX/comma.html new file mode 100644 index 0000000..fad68e6 --- /dev/null +++ b/reference/C/SYNTAX/comma.html @@ -0,0 +1,60 @@ +The COMMA. + + + + +
+

The COMMA.

+
+The comma has two uses. The most comman, is as a parameter seperator +for data types and +function parameter lists. +Here is an example: +
+	main()
+    	{
+	   char String1[20], String2[]="Outback Pub"; /* data types */
+	   strncpy(String1, string2, 7);
+	}
+
+The other use is as a series operator which can be seen in use with +the for keyword. An example of the syntax is shown +in the link below. + +
+

Examples:

+ + +Example of the series operator. + +
+

See also:

+ +Nothing else to see :-( + +

+ +


+

+

+ + + + +
+ Top + + Master Index + + Keywords + + Functions +
+
+

+


+
Martin Leslie +

+ +