How is a structure member accessed?
No Answer is Posted For this Question
Be the First to Post Answer
List the different types of c tokens?
Is boolean a datatype in c?
how to use showbits function?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
When should a type cast not be used?
Describe how arrays can be passed to a user defined function
What does main () mean in c?
What is derived datatype in c?
What are unions in c?
Explain what is gets() function?
When is a “switch” statement preferable over an “if” statement?
What is the difference b/w Structure & Class?