Computer Science, asked by itsmel, 1 year ago

write a programme to print your full adress in proper way.

Answers

Answered by Anonymous
1
The program ask the programmer to print the mailing address in the following form:

1. First line: Name.
2. Second line: Door No, Street.
3. Third line: City, Pin Code.

To display the out put in above formate we use newline character "\n". A newline character instructs the computer to go to the next(new) line.

#include <stdio.h>
main()
{
printf("Jubilant Organosys Limited\n");
printf("Nimbut Village, Nira R. S.\n");
printf("Pune-412102 \n");
return 0;
}

Output:

Jubilant Organosys Limited,
Nimbut Village, Nira R.S.
Pune-412102.

itsmel: sameer
itsmel: for what
itsmel: you have solve my problem so i should tell thanks
itsmel: that question was aked by my brother to me
itsmel: i just dont know all these so i posted this question
itsmel: ok bro
Similar questions