Feed Headline Animator

write a program to declare and initialize the values to variables x,y&z of char type and then print their contents on screen by(Using printf Function)

main( )
{
char x=’r’ ,y=’n’ ,z =’b’;
clrscr ();
printf(“”Data in x=%c/n”,x);
printf(“”Data in y=%c/n”,y);
printf(“”Data in z=%c/n”,z);
}

Posted by: Wasim Javed

No comments:

Post a Comment