C program to print your name and address(Static program).
#include<stdio.h>
int main()
{
printf("Name:
ABC PATEL \n");
printf("Address:
11-PQR Society, Nr. Bank \n");
printf("Ahmedabad,
Gujarat, India.");
return 0;
} |
Output of the Program
Name: ABC PATEL
Address: 11-PQR Society, Nr. Bank
Ahmedabad, Gujarat, India.
No comments:
Post a Comment