2. Write a program that prints your name address.
#include<stdio.h>
void main()
{
// "\n" is use for new line
printf("Name : Santoki Arpit J.\n");
printf("Address : Darshan Institute of Engg. & Tech.\n");
printf(" Rajkot - Morbi Highway, At Hadala");
}
Output:
0 Comments