Skip to content

Instantly share code, notes, and snippets.

@jmramirezpro
Created December 30, 2015 10:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmramirezpro/5fab3b77a2a0ea3b53c4 to your computer and use it in GitHub Desktop.
Save jmramirezpro/5fab3b77a2a0ea3b53c4 to your computer and use it in GitHub Desktop.
/*
* TresLetras.c
* Ejercicios del Podcast Codigo Fuente - Programa 15
* Programa que muestra por pantalla las 3 primeras letras minúsculas del abecedario y su código ASCII.
* Creado el 29 de dic. de 2015
* Author: jmramirez
*/
#include <stdio.h>
int main(void)
{
printf ("Codigo ASCII de la letra a: %d\n", (int) 'a');
printf ("Codigo ASCII de la letra b: %d\n", (int) 'b');
printf ("Codigo ASCII de la letra c: %d\n", (int) 'c');
return (0);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment