Ask Question
2 December, 20:51

Write a C program that displays your name and address (or if you value your privacy, a frictionless name and address)

+1
Answers (1)
  1. 2 December, 23:35
    0
    Following are the program in c language

    #include / / header file

    int main () / / main method

    {

    char name[90]="mantasa"; / / storing name

    char add[90]="120 lal bangla mumbai"; / / storing address

    printf ("/n Name:%s/nAddress:%s", name, add); / / print name and address

    return 0;

    }

    Output:

    Name:mantasa

    Address:120 lal bangla mumba

    Explanation:

    In this program we are declaring the two array of char type which will store the name and address. after that we display name and address.
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a C program that displays your name and address (or if you value your privacy, a frictionless name and address) ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers