Hi ,
Can any one calrify me giving answers to the questions based on the c program given below.
[code=c]
char * b, q, *r;
b=getbuf();
q = *b;
r= anotherfunction (b);
/* we want to use ‘q’ and ‘r’ here*/
char * getbuf()
{
char buff[8];
/* unspecified, buff defined here *./
return (char *) buff;
}
[/code]
1. What will...