diff options
Diffstat (limited to 'reference/C/FUNCTIONS/sprintf.html')
-rw-r--r-- | reference/C/FUNCTIONS/sprintf.html | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/reference/C/FUNCTIONS/sprintf.html b/reference/C/FUNCTIONS/sprintf.html new file mode 100644 index 0000000..362818c --- /dev/null +++ b/reference/C/FUNCTIONS/sprintf.html @@ -0,0 +1,61 @@ +<title>sprintf function</title> + +<head> +<script language="JavaScript"> +</script> +</head> + +<body bgcolor="#ffffcc"> +<hr> +<center> +<h1>sprintf function</h1> +</center> +<hr> +<b>sprintf</b> is used to format data and put it into a string array. It +is basically a <a href="printf.html">printf</a> and so uses the same +<a href="escape.html"> escape sequences</a> and <a href="format.html">format +identifers.</a><p> + +<a href="../EXAMPLES/sprintf.c"><img src="../../GRAPHICS/computer.gif"></a> +example program.<p> + +<hr> +<h1>See also</h1> +<a href="fprintf.html">fprintf</a> which will O/P formatted text to a file. +<p> +<a href="printf.html">printf</a> O/P formatted text to STDOUT. +<p> +<a href="puts.html">puts</a> O/P text to STDOUT. +<p> +<a href="strcpy.html">strcpy</a> Copy strings. +<p> +<a href="../MAN/strcat.htm"> +<i>strcat</a> Concatinate strings. MAN PAGE.</i> +<p> + + +<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> |