2 votes
1 answer
2
int main(){ char *ptr = "gateexam"; printf("%c\n", *&*&*ptr); return 0; }(a) Compiler Error(b) Garbage Value(c) Runtime Error(d) g*please explain it.
0 votes
1 answer
4
In a binary tree with n nodes every node has an odd no. of descendants. Every node is considered to be its own descendant. What is the no. of nodes in the tree that has e...