diff options
Diffstat (limited to 'reference/C/FUNCTIONS/escape.html')
-rw-r--r-- | reference/C/FUNCTIONS/escape.html | 86 |
1 files changed, 86 insertions, 0 deletions
diff --git a/reference/C/FUNCTIONS/escape.html b/reference/C/FUNCTIONS/escape.html new file mode 100644 index 0000000..3ba17a3 --- /dev/null +++ b/reference/C/FUNCTIONS/escape.html @@ -0,0 +1,86 @@ +<title>Escape sequences</title> +<head> +<script language="JavaScript"> +</script> +</head> +<body bgcolor="#ffffcc"> +<hr> +<center><h1>Escape sequences</h1></center> +<hr> +<p> + +The following is a list of escape sequences. +<p> +<pre> + \n Newline + \t Horizontal Tab + \v Vertical Tab + \b Backspace + \r Carriage Return + \f Form feed + \a Audible Alert (bell) + \\ Backslash + \? Question mark + \' Single quote + \" Double quote + \000 Oct - No one uses Octal unless they have an ICL background... + \xhh <a href="hex_tab.html">Hex number</a> + <a href="dec_tab.html">Decimal table</a> just for fun. + \ Preprocessor line continuation, must be immediately followed + by a newline. +</pre> +These can be used anywhere that C expects to see a character constant. +Must be time for a quick example. +<pre> + main() + { + char word[]="\x6d\x6f\x64\x65\x6d"; + + printf("%s\n", word); + } +</pre> +Cant you work out what will appear if you ran this program?? +<hr> +<h2>Examples:</h2> +<img src=../../GRAPHICS/computer.gif> +<a href="../EXAMPLES/convesc.c"> Example program.</a> + + + +<p> + +<hr> +<p> +<center> +<table border=2 width="80%" bgcolor="ivory"> +<tr align=center> +<td width="25%"> +<a href="../cref.html"> Top</a> +</td><td width="25%"> +<a href="../master_index.html"> Master Index</a> +</td><td width="25%"> +<a href="../SYNTAX/keywords.html"> Keywords</a> +</td><td width="25%"> +<a href="funcref.htm"> Functions</a> +</td> +</tr> +</table> +</center> +<p> +<hr> +<address>Martin Leslie +</address><p> +</body> +</html> + + + + + + + + + + + + |