Soy Nuevo en esto de la programacion en C#, y quisiera saber si alguno de uds. me ayudaria a resolver este problemita...
Me Cuando Le Doy a Correr Me Dice "Syntax Error Before Printf, Line 17"...
Gracias! :3
Código
#include <stdlib.h> #include <stdio.h> #include <conio.h> int acc; int an; int edad; int main() { printf("\t Ingrese El Año de Nacimietno\n"); scanf("%d",&an); printf("\t Ingrese El Año Actual\n"); scanf("%d",&acc); edad=acc-an printf("su edad es: %d",edad); getch(); }