<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
	<id>http://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Curso_de_Programaci%C3%B3n_en_C%2FProg46</id>
	<title>Curso de Programación en C/Prog46 - Historial de revisiones</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.cabal.mx/index.php?action=history&amp;feed=atom&amp;title=Curso_de_Programaci%C3%B3n_en_C%2FProg46"/>
	<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Curso_de_Programaci%C3%B3n_en_C/Prog46&amp;action=history"/>
	<updated>2026-04-09T00:20:15Z</updated>
	<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
	<generator>MediaWiki 1.32.1</generator>
	<entry>
		<id>http://wiki.cabal.mx/index.php?title=Curso_de_Programaci%C3%B3n_en_C/Prog46&amp;diff=3523&amp;oldid=prev</id>
		<title>Rrc en 13:37 4 mar 2012</title>
		<link rel="alternate" type="text/html" href="http://wiki.cabal.mx/index.php?title=Curso_de_Programaci%C3%B3n_en_C/Prog46&amp;diff=3523&amp;oldid=prev"/>
		<updated>2012-03-04T13:37:51Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
* [[:#Prog46 | Más del operador for]]&lt;br /&gt;
** [[:#Resultado | Resultado]]&lt;br /&gt;
** [[:#Explicación | Explicación]]&lt;br /&gt;
&lt;br /&gt;
== Prog46 ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;c&amp;quot; line=&amp;quot;GESHI_FANCY_LINE_NUMBERS&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#include &amp;lt;stdio.h&amp;gt;&lt;br /&gt;
&lt;br /&gt;
int main( void )&lt;br /&gt;
{&lt;br /&gt;
  char ch;&lt;br /&gt;
&lt;br /&gt;
  for ( ch = &amp;#039;A&amp;#039;; ch &amp;lt;= &amp;#039;Z&amp;#039;; ch++ )&lt;br /&gt;
    printf( &amp;quot;El valor ASCII para \&amp;#039;%c\&amp;#039; es %d decimal y %x hexadecimal\n&amp;quot;&lt;br /&gt;
            &amp;quot;                    \&amp;#039;%c\&amp;#039; es %d decimal y %x hexadecimal.\n&amp;quot;,&lt;br /&gt;
                                    ch, ch, ch, ch + 32, ch + 32, ch + 32 );&lt;br /&gt;
  return 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Resultado ===&lt;br /&gt;
 &lt;br /&gt;
 [rrc@Pridd CClase]$ gcc -Wall -O2 -o Prog46 Prog46.c &lt;br /&gt;
 [rrc@Pridd CClase]$ ./Prog46&lt;br /&gt;
 El valor ASCII para &amp;#039;A&amp;#039; es 65 decimal y 41 hexadecimal&lt;br /&gt;
                     &amp;#039;a&amp;#039; es 97 decimal y 61 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;B&amp;#039; es 66 decimal y 42 hexadecimal&lt;br /&gt;
                     &amp;#039;b&amp;#039; es 98 decimal y 62 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;C&amp;#039; es 67 decimal y 43 hexadecimal&lt;br /&gt;
                     &amp;#039;c&amp;#039; es 99 decimal y 63 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;D&amp;#039; es 68 decimal y 44 hexadecimal&lt;br /&gt;
                     &amp;#039;d&amp;#039; es 100 decimal y 64 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;E&amp;#039; es 69 decimal y 45 hexadecimal&lt;br /&gt;
                     &amp;#039;e&amp;#039; es 101 decimal y 65 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;F&amp;#039; es 70 decimal y 46 hexadecimal&lt;br /&gt;
                     &amp;#039;f&amp;#039; es 102 decimal y 66 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;G&amp;#039; es 71 decimal y 47 hexadecimal&lt;br /&gt;
                     &amp;#039;g&amp;#039; es 103 decimal y 67 hexadecimal. &lt;br /&gt;
 El valor ASCII para &amp;#039;H&amp;#039; es 72 decimal y 48 hexadecimal&lt;br /&gt;
                     &amp;#039;h&amp;#039; es 104 decimal y 68 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;I&amp;#039; es 73 decimal y 49 hexadecimal&lt;br /&gt;
                     &amp;#039;i&amp;#039; es 105 decimal y 69 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;J&amp;#039; es 74 decimal y 4a hexadecimal&lt;br /&gt;
                     &amp;#039;j&amp;#039; es 106 decimal y 6a hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;K&amp;#039; es 75 decimal y 4b hexadecimal&lt;br /&gt;
                     &amp;#039;k&amp;#039; es 107 decimal y 6b hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;L&amp;#039; es 76 decimal y 4c hexadecimal&lt;br /&gt;
                     &amp;#039;l&amp;#039; es 108 decimal y 6c hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;M&amp;#039; es 77 decimal y 4d hexadecimal&lt;br /&gt;
                     &amp;#039;m&amp;#039; es 109 decimal y 6d hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;N&amp;#039; es 78 decimal y 4e hexadecimal&lt;br /&gt;
                     &amp;#039;n&amp;#039; es 110 decimal y 6e hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;O&amp;#039; es 79 decimal y 4f hexadecimal&lt;br /&gt;
                     &amp;#039;o&amp;#039; es 111 decimal y 6f hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;P&amp;#039; es 80 decimal y 50 hexadecimal&lt;br /&gt;
                     &amp;#039;p&amp;#039; es 112 decimal y 70 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;Q&amp;#039; es 81 decimal y 51 hexadecimal&lt;br /&gt;
                     &amp;#039;q&amp;#039; es 113 decimal y 71 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;R&amp;#039; es 82 decimal y 52 hexadecimal&lt;br /&gt;
                     &amp;#039;r&amp;#039; es 114 decimal y 72 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;S&amp;#039; es 83 decimal y 53 hexadecimal&lt;br /&gt;
                     &amp;#039;s&amp;#039; es 115 decimal y 73 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;T&amp;#039; es 84 decimal y 54 hexadecimal&lt;br /&gt;
                     &amp;#039;t&amp;#039; es 116 decimal y 74 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;U&amp;#039; es 85 decimal y 55 hexadecimal&lt;br /&gt;
                     &amp;#039;u&amp;#039; es 117 decimal y 75 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;V&amp;#039; es 86 decimal y 56 hexadecimal&lt;br /&gt;
                     &amp;#039;v&amp;#039; es 118 decimal y 76 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;W&amp;#039; es 87 decimal y 57 hexadecimal&lt;br /&gt;
                     &amp;#039;w&amp;#039; es 119 decimal y 77 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;X&amp;#039; es 88 decimal y 58 hexadecimal&lt;br /&gt;
                     &amp;#039;x&amp;#039; es 120 decimal y 78 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;Y&amp;#039; es 89 decimal y 59 hexadecimal&lt;br /&gt;
                     &amp;#039;y&amp;#039; es 121 decimal y 79 hexadecimal.&lt;br /&gt;
 El valor ASCII para &amp;#039;Z&amp;#039; es 90 decimal y 5a hexadecimal&lt;br /&gt;
                     &amp;#039;z&amp;#039; es 122 decimal y 7a hexadecimal.&lt;br /&gt;
 &lt;br /&gt;
=== Explicación ===&lt;br /&gt;
&lt;br /&gt;
[[Category:Programación en C]]&lt;br /&gt;
[[Category:CCabal]]&lt;br /&gt;
[[Category:CursoC]]&lt;/div&gt;</summary>
		<author><name>Rrc</name></author>
		
	</entry>
</feed>