typedef struct node
{
int info;
struct node *left,*right;
}node;
Given the function prototype is
bool isSubset(node *a,node *b);
Write the C code to implement the function.
Place for the people like us...
1. What's the difference between the following two C statements? const char *p; char* const p;
2. Write a C function which does the addition of two integers without using the '+' or '-' operator.
3. The following is the macro implementation of the famous, Triple xor swap. #define SWAP(a,b) ((a) ^= (b) ^= (a) ^= (b)) What are the potential problems with the above macro?