#include<stdio.h>//this is for storing numbersintmain(){
int age; //this makes a vairable for you to store the value inprintf("enter in your age: "); //this prints a prompt for the userscanf("%d", &age); //this takes in the argument given and stores it//into the address of agereturn0;
}
#include<stdio.h>//this is for entering and storing stringsintmain(){
char name[20];
printf("Enter a name : ");
scanf("%s", &name);
printf("the name entered is: %s\n", name);
return0;
}