write a c program to display your name address and phone number

Write a C Program to Display your Name, Address, and Phone Number

In this tutorial learn how you can display your name, address, and phone number in c. We use printf to display all our details.

C programming is a powerful general-purpose programming language. It can be used to develop software like operating systems, databases, compilers, etc.

Write a Program to Display your Name, Address, and Phone Number in C

Here is the code to display your name, address, and phone number in c programming.

#include <stdio.h> //WAP to display your name, address and phone number
int main(){
    printf("My Name is Saroj Baniya.n");
    printf("I live in dallu,kathmandu.n");
    printf("My Phone Number is 9818434496.");
    return 0;
}

Test Live At Jdoodle

Conclusion

This is how you can display your name, address, and phone number in c programming. Comment below if you like our tutorial.

Leave a Comment

Your email address will not be published. Required fields are marked *