User profile: ActiveSpot

User info
User name:ActiveSpot
History
Joined:
Number of posts:9
Latest posts:

Function called with two variables as parameters without commas, is this valid ??
@dhayden Yes, I was thinking of it as pass by reference (& operator). And, got confused with it. Tha...

Function called with two variables as parameters without commas, is this valid ??
Hi All, I came across this question where the function is called with this kind parameters sna...

[Runtime Error] Linked List Print Operation
@ne555 Thanks mate. Appreciate your help. I just changed the line 41 to while(pnode->next!=NULL) N...

Question about pointers
Yes, it is possible to do this via type casting. double *fptr = (double *) &num1; Where, the value ...

[Runtime Error] Linked List Print Operation
Hi All, I wrote the code to store the values present in the array to the newly created LinkedList...