一样的先来看一段代码:

#include <stdio.h>
int main(void)
{
int age;
char name[80];
puts("Enter your age.");
scanf("%d", ...

,