a) Write a program to display your name and address.
Answers
Answered by
63
- clrscr(); // clears the output window.
- printf("\n Name : David"); // prints the name. printf("\n Address : London"); // prints the address.
- printf("\n Birth Date : 02-08-1958"); // prints the birth date.
- getch();
- }
- Address: London. Birth Date:02-08-1958.
Explanation:
Answered by
1
Answer:
i have written on python
Explanation:
def personal_details():
name, age = "Rohit", 25
address = "Mumbai, Maharashtra, India"
print("Name: {}\nAge: {}\nAddress: {}".format(name, age, address))
personal_details()
mark me as brainliest
Similar questions
Social Sciences,
21 days ago
Physics,
21 days ago
Math,
1 month ago
Physics,
1 month ago
English,
9 months ago