480 views
0 votes
0 votes

I am not getting how unsigned is used and how is it working???

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
2
Mrityudoot asked Feb 25
144 views
How can we find the highest element in a singly linked list in O(1)? We are free to use any extra space.
0 votes
0 votes
1 answer
4
Vaishnavi01 asked Sep 17, 2018
635 views
struct node* foo(struct node* a, struct node* b){ struct node* result, *rec; if(a==null) return b; else if(b==null) return a; else { rec=foo(a->next,b->next...