0
How to write a code that asks for a persons age and displays it? Is it this?? Am new to C btw
printf("\nhow old are you? \n"); Scanf("%d",&age);
2 Answers
+ 2
int age;
printf("\nhow old are you? \n");
scanf("%d",&age);
printf("You are %d", age);
Nice try btw!
+ 1
Tks alot u saved me