Ho un problema cn l output:
#include <stdio.h>
#include <conio.h>
int t=0;
int y=0;
int s;
int main(void) {
printf ("inserire numero t \n");
scanf("%d \n",&t);
printf ("inserire numero y \n");
scanf("%d \n",&y);
s=y+t;
printf("%d \n",s);
printf("Premere un tasto per continuare");
_getch();
return 0;
}
-----------------------------------------------------------------
output:
inserire un numero t
8
5
inserire un numero y
10
13
Premere un taso per continuare
-------------------------------------------------------------------
perke?