Feed Headline Animator

Program to declare and initialize data into string type variables name & city and print these variables on the screen by using the printf function.

main( )
{
char name [15]=”wasim javed”;
char city[25]=”D-I-khan”;
clrdcr ();
printf(“ Name: % s/n”,name);
printf(“city: % s/n”,city);
getch();
}


Posted by: Wasim Javed

No comments:

Post a Comment