What are the two types of structure?
No Answer is Posted For this Question
Be the First to Post Answer
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;
Explain how do you determine whether to use a stream function or a low-level function?
/*program to calculate hra,da in salary if salary less than 10000 then hra15%,da13% otherwise hra20%,da18%/*
What is structure packing in c?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
what is the difference b/w NULL and null?
the maximum width of a c variable name can be a) 6 characters b) 8 characters c) 10 characters d) 20 characters
How will you divide two numbers in a MACRO?
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What is operator precedence?
Explain the difference between strcpy() and memcpy() function?
What is page thrashing?