Here, you are declaring a variable for structure.

*top is a variable of struct node.

struct node
{
int d;
struct node *next;
}*top=NULL;

The above is equivalent to:
*struct node
{
int d;
struct node *next;
}

struct node *top=NULL;


*
On Mon, Aug 1, 2011 at 11:27 PM, Priyanka <pril...@gmail.com> wrote:

> struct node
> {
> int d;
> struct node *next;
> }*top=NULL;
>
> wat s it mean?
>
> --
> You received this message because you are subscribed to the Google Groups
> "Algorithm Geeks" group.
> To post to this group, send email to algogeeks@googlegroups.com.
> To unsubscribe from this group, send email to
> algogeeks+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/algogeeks?hl=en.
>
>


-- 
Regards :
ROHIT JALAN
B.E. Graduate,
Computer Science Department,
RVCE, Bangalore

-- 
You received this message because you are subscribed to the Google Groups 
"Algorithm Geeks" group.
To post to this group, send email to algogeeks@googlegroups.com.
To unsubscribe from this group, send email to 
algogeeks+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/algogeeks?hl=en.

Reply via email to