A<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="ru">
		<id>http://cppe.ru/index.php?action=history&amp;feed=atom&amp;title=C_Tutorial%2FLanguage%2FVariable_Output</id>
		<title>C Tutorial/Language/Variable Output - История изменений</title>
		<link rel="self" type="application/atom+xml" href="http://cppe.ru/index.php?action=history&amp;feed=atom&amp;title=C_Tutorial%2FLanguage%2FVariable_Output"/>
		<link rel="alternate" type="text/html" href="http://cppe.ru/index.php?title=C_Tutorial/Language/Variable_Output&amp;action=history"/>
		<updated>2026-04-16T11:28:00Z</updated>
		<subtitle>История изменений этой страницы в вики</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>http://cppe.ru/index.php?title=C_Tutorial/Language/Variable_Output&amp;diff=3840&amp;oldid=prev</id>
		<title> в 14:21, 25 мая 2010</title>
		<link rel="alternate" type="text/html" href="http://cppe.ru/index.php?title=C_Tutorial/Language/Variable_Output&amp;diff=3840&amp;oldid=prev"/>
				<updated>2010-05-25T14:21:19Z</updated>
		
		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;table class=&quot;diff diff-contentalign-left&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr style=&quot;vertical-align: top;&quot; lang=&quot;ru&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;← Предыдущая&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: white; color:black; text-align: center;&quot;&gt;Версия 14:21, 25 мая 2010&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; style=&quot;text-align: center;&quot; lang=&quot;ru&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(нет различий)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
			</entry>

	<entry>
		<id>http://cppe.ru/index.php?title=C_Tutorial/Language/Variable_Output&amp;diff=3841&amp;oldid=prev</id>
		<title>Admin: 1 версия:&amp;#32;Импорт контента...</title>
		<link rel="alternate" type="text/html" href="http://cppe.ru/index.php?title=C_Tutorial/Language/Variable_Output&amp;diff=3841&amp;oldid=prev"/>
				<updated>2010-05-25T10:32:43Z</updated>
		
		<summary type="html">&lt;p&gt;1 версия: Импорт контента...&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Новая страница&lt;/b&gt;&lt;/p&gt;&lt;div&gt;==Printing Variable Contents==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;Use the printf function with formatting options.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &lt;br /&gt;
&amp;lt;source lang=&amp;quot;cpp&amp;quot;&amp;gt;#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
main(){&lt;br /&gt;
  int x;&lt;br /&gt;
  float y;&lt;br /&gt;
  char c;&lt;br /&gt;
  x = -4443;&lt;br /&gt;
  y = 554.21;&lt;br /&gt;
  c = &amp;quot;M&amp;quot;;&lt;br /&gt;
  printf(&amp;quot;\nThe value of integer variable x is %d&amp;quot;, x);&lt;br /&gt;
  printf(&amp;quot;\nThe value of float variable y is %f&amp;quot;, y);&lt;br /&gt;
  printf(&amp;quot;\nThe value of character variable c is %c\n&amp;quot;, c);&lt;br /&gt;
}&amp;lt;/source&amp;gt;&lt;br /&gt;
&amp;lt;pre class=codeResult&amp;gt;The value of integer variable x is -4443&lt;br /&gt;
      The value of float variable y is 554.210022&lt;br /&gt;
      The value of character variable c is M&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Conversion specifiers are made up of two characters: % and a special character.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The special character tells the program how to convert the data.&amp;lt;/p&amp;gt;&lt;br /&gt;
Conversion Specifier&lt;br /&gt;
Description&lt;br /&gt;
%d&lt;br /&gt;
Displays integer value&lt;br /&gt;
%f&lt;br /&gt;
Displays floating-point numbers&lt;br /&gt;
%c&lt;br /&gt;
Displays character&lt;/div&gt;</summary>
		<author><name>Admin</name></author>	</entry>

	</feed>