C Program to print Your Address
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
char a,b,c;
printf("Name:\t");
scanf("%s",a);
printf("Street:\t");
scanf("%s",b);
printf("Pin Code: \t");
scanf("%s",c);
printf("%s%s%s",a,b,c);
getch();
}
Thanx .it is very helpful to me
ReplyDelete