PageRenderTime 39ms CodeModel.GetById 14ms RepoModel.GetById 0ms app.codeStats 0ms

/docs/c/io/fgets.html

https://github.com/whitypig/emacs-cppref
HTML | 100 lines | 68 code | 26 blank | 6 comment | 0 complexity | af8e53d0adca16f4fc9de1db8b253113 MD5 | raw file
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
  4. lang="en" dir="ltr">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <title>
  8. fgets [C++ Reference]
  9. </title>
  10. <meta name="generator" content="DokuWiki Release 2009-02-14b" />
  11. <meta name="robots" content="index,follow" />
  12. <meta name="date" content="2008-10-14T15:42:01-0700" />
  13. <meta name="keywords" content="c,io,fgets" />
  14. <link rel="search" type="application/opensearchdescription+xml" href="/wiki/lib/exe/opensearch.php" title="C++ Reference" />
  15. <link rel="start" href="/wiki/" />
  16. <link rel="contents" href="/wiki/c/io/fgets?do=index" title="Index" />
  17. <link rel="alternate" type="application/rss+xml" title="Recent Changes" href="/wiki/feed.php" />
  18. <link rel="alternate" type="application/rss+xml" title="Current Namespace" href="/wiki/feed.php?mode=list&amp;ns=c:io" />
  19. <link rel="alternate" type="application/wiki" title="Edit this page" href="/wiki/c/io/fgets?do=edit" />
  20. <link rel="alternate" type="text/html" title="Plain HTML" href="/wiki/_export/xhtml/c/io/fgets" />
  21. <link rel="alternate" type="text/plain" title="Wiki Markup" href="/wiki/_export/raw/c/io/fgets" />
  22. <link rel="stylesheet" media="all" type="text/css" href="/wiki/lib/exe/css.php?s=all&amp;t=custom1" />
  23. <link rel="stylesheet" media="screen" type="text/css" href="/wiki/lib/exe/css.php?t=custom1" />
  24. <link rel="stylesheet" media="print" type="text/css" href="/wiki/lib/exe/css.php?s=print&amp;t=custom1" />
  25. <script type="text/javascript" charset="utf-8" src="/wiki/lib/exe/js.php?edit=0&amp;write=1" ></script>
  26. <link rel="shortcut icon" href="/wiki/lib/tpl/custom1/images/favicon.png" />
  27. </head>
  28. <body>
  29. <div class="dokuwiki">
  30. <div class="stylehead">
  31. <div class="breadcrumbs">
  32. <span class="bchead">You are here: </span><a href="../../start.html" title="start">C++ Reference</a> &raquo; <a href="../../c/start.html" title="c:start">The Standard C Library</a> &raquo; <a href="../../c/io/start.html" title="c:io:start">Standard C I/O</a> &raquo; <a href="../../c/io/fgets.html" title="c:io:fgets">fgets</a> </div>
  33. </div>
  34. <div class="page">
  35. <script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
  36. </script>
  37. <script type="text/javascript">
  38. _uacct = "UA-2828341-1";
  39. urchinTracker();
  40. </script>
  41. <!-- wikipage start -->
  42. <h2><a name="fgets" id="fgets">fgets</a></h2>
  43. <div class="level2">
  44. <p>
  45. Syntax:
  46. </p>
  47. <pre class="c code c++" style="font-family:monospace;"> <span class="co2">#include &lt;cstdio&gt;</span>
  48. <span class="kw4">char</span> <span class="sy0">*</span>fgets<span class="br0">&#40;</span> <span class="kw4">char</span> <span class="sy0">*</span>str<span class="sy0">,</span> <span class="kw4">int</span> num<span class="sy0">,</span> FILE <span class="sy0">*</span>stream <span class="br0">&#41;</span>;</pre>
  49. <p>
  50. The function fgets() reads up to num - 1 characters from the given file stream
  51. and dumps them into str. The string that fgets() produces is always NULL-
  52. terminated. fgets() will stop when it reaches the end of a line, in which case
  53. str will contain that newline character. Otherwise, fgets() will stop when it
  54. reaches num - 1 characters or encounters the <acronym title="End of file">EOF</acronym> character. fgets() returns str
  55. on success, and NULL on an error.
  56. </p>
  57. <p>
  58. Related Topics: <a href="../../c/io/fputs.html" class="wikilink1" title="c:io:fputs">fputs</a>, <a href="../../c/io/fscanf.html" class="wikilink1" title="c:io:fscanf">fscanf</a>, <a href="../../c/io/gets.html" class="wikilink1" title="c:io:gets">gets</a>, <a href="../../c/io/scanf.html" class="wikilink1" title="c:io:scanf">scanf</a>
  59. </p>
  60. </div>
  61. <!-- wikipage stop -->
  62. </div>
  63. <div class="clearer">&nbsp;</div>
  64. <div class="stylefoot">
  65. <div class="meta">
  66. <div class="user">
  67. </div>
  68. <!--
  69. <div class="doc">
  70. c/io/fgets.txt &middot; Last modified: 10/14/2008 15:42 (external edit) </div>
  71. -->
  72. </div>
  73. </div></div></body>
  74. </html>