Tutorial de Lenguaje C                                                                                                   Dr. Roberto Gómez
 
 


LAS ASIGNACIONES


int i;                     i = 3;
/* variable tipo entero i toma el valor de 3 */

short s;                s = 4;
/* variable tipo entero s toma el valor de 4 */

char cp;            cp = '\';
/* variable tipo caracter cp toma el valor de 3 */

float res;            res = 241.45;
 /* variable tipo flotante res toma el valor de 241.45 */
 

MENÚ PRINCIPAL