#include"main.h "
void main()
{
char *address;
char ch='a';
address=&ch;
clrscr();
printf("\nvalue of ch-->%c",address) ;
getch();
}
i am not able to get output..will you tell which place i have to change...if i compile there is no error is coming....will you give correct program..please .......
void main()
{
char *address;
char ch='a';
address=&ch;
clrscr();
printf("\nvalue of ch-->%c",address) ;
getch();
}
i am not able to get output..will you tell which place i have to change...if i compile there is no error is coming....will you give correct program..please .......
Comment