296 views
0 votes
0 votes
#include <IOStream.H>
void print(char **c)
{
*c="MY MY";
}
void main()
{
char *p="YOUR";
print(&p);
cout<<p;
}
(a) YOUR (b) NULL String
(c) MY MY (d) No Output-error

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
0 votes
0 votes
1 answer
4
altamash asked Apr 12, 2019
327 views
int main();{int a,*b, c, *d, e;a=10;b=&a;c=&b;d=&c;e=&d;print f(“a=%d b=%u c=%u d=%u e=%u e=%u\n”, a,b,c,d,e);print f(“ %d %d %d \n”,a,a+*b, c+ *d+, e);return 0...