Computer Science, asked by gnanesh61, 1 month ago

a) Write a program to display your name and address.​

Answers

Answered by MrAlluring
63

\huge\fcolorbox{red}{lightgreen}{Answer}

  • 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:

\small{\color{red}{\fbox{\textsf{\textbf{@ItzSongLover}}}}}

Answered by abhis60
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