Welcome to Westonci.ca, your ultimate destination for finding answers to a wide range of questions from experts. Explore thousands of questions and answers from a knowledgeable community of experts on our user-friendly platform. Connect with a community of professionals ready to provide precise solutions to your questions quickly and accurately.
Sagot :
name = input("Enter your name: ")
age = int(input("Enter your age: "))
print("Your name is",name,"and you are",age,"year(s) old.")
I wrote my code in python 3.8. I hope this helps.
Program description:
- Defining header file.
- Defining the main method.
- In the next step, the character array as "name" and an integer variable "age" is declared that uses the input method to the input value.
- After input value, a print method is declared that prints value with the message.
Program:
#include <stdio.h>//header file
int main()//defining main method
{
char name[50];//defining character array as name
int age;//defining integer variable
printf("Enter name: ");//print message
scanf("%s",name);//input name
printf("Enter age: ");//print message
scanf("%d",&age);//input age
printf("Hi.. \%s",name); //print value with message
printf(" your age is %d.",age);//print value with message
return 0;
}
Output:
Please find the attached file.
Learn more:
brainly.com/question/13160158

Thanks for using our service. We aim to provide the most accurate answers for all your queries. Visit us again for more insights. Your visit means a lot to us. Don't hesitate to return for more reliable answers to any questions you may have. Get the answers you need at Westonci.ca. Stay informed with our latest expert advice.