Can you apply link and association interchangeably?
No Answer is Posted For this Question
Be the First to Post Answer
what is the diff b/w static and non static variables in C. Give some examples plz.
What is ambagious result in C? explain with an example.
How many levels deep can include files be nested?
the 'sizeof' operator reported a larger size than the calculated size for a structure type. What could be the reason?
Explain the advantages and disadvantages of macros.
How do you use a 'Local Block'?
Differentiate b/w Modify and Update commands giving example.
How do you initialize pointer variables?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
Why should I prototype a 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;