Bloque 1.3 Variables-Entera

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <stdio.

h>
#include <stdlib.h>

int main()
{
int a;
a = 100;
printf("El valor de a: %i\n",a);

return 0;
}

You might also like