This document was uploaded by user and they confirmed that they have the permission to share
it. If you are author or own the copyright of this book, please report to us by using this DMCA
report form. Report DMCA
Overview
Download & View Ejercicio 1 Pag 22 as PDF for free.
/*Ejercicio N�1 Pagina 22*/ /*Busque los errores:*/ #include <stdio.h> int main() { int n�mero; n�mero = 2; return 0; } /*Errores: 1) Las variables no pueden llevar acentos */ /*Ejercicio Corregido: asi funciona bien*/ # include <stdio.h> int main () { int numero; numero=2; return 0; }