Computer Science, asked by ashelykuttypcv22w, 11 months ago

Write c++ program to print ur adress

Answers

Answered by chintu123456789
0
Write a C++ program that displaysyour name, street address, and city and state on three separate lines onthe screen. Save the file as NameAndAddress.cpp. Double quotethe name and print using cout insertion operator to output screen. Double quote the address and printusing cout insertion operator tooutput screen.
Answered by karsaptatship88qja
0
Suppose my address is 16/A Long Avenue.
the c++program-

#include<iostream.h>
int main()
{
cout <<"My address is 16/2A Long Avenue";
fflush(stdin);
getchar();
return 0;
}
Similar questions