1. Point out the error in the following code? typedef struct { int data; NODEPTR link; }NODEPTR;





Write Comment

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Tags
Show Similar Question And Answers
QA->Error detection at the data link layer is achieved using?....
QA->Which ofthe following becomes the first Indian state to link all government collegesand medical colleges to the national cancer grid ?....
QA->In a certain code SUNDAY is coded as USDNYA. How could CREATION be written in that code?....
QA->Red data book provides data on :....
QA->4G LTE is a standard for wireless communication of high speed data for mobile phone and data terminals. What does LTE stand for?....
MCQ->What will be the output of the program in 16-bit platform (under DOS)? #include<stdio.h> int main() { struct node { int data; struct node link; }; struct node p, q; p = (struct node ) malloc(sizeof(struct node)); q = (struct node ) malloc(sizeof(struct node)); printf("%d, %d\n", sizeof(p), sizeof(q)); return 0; }....
MCQ-> Each of the questions below consists of a question andtwo statements numbered I and II given below it. You have to decide whether the data provided in the statements are suf icient to answer the question. Read both the statements and - Give answer a: if the data in Statement I alone are sufficient to answer the question, while the data in Statement II alone are not sufficient to answer the question. Give answer b: if the data in Statement II alone are sufficient to answer the question, while the data in Statement I alone are not sufficient to answer the question. Give answer c: if the data either in Statement I alone or in Statement II alone are sufficient to answer the question. Give answer d: if the data even in both Statements I and II together are not sufficient to answer the question. Give answer e: if the data in both Statements I and II together are necessary to answer the question. What is the position of point F with respect to point I ? I. Point G is 5 km east of point F. Point S is 5 km north of point G. Point H is the mid point of points G and S. Point I is to the south of point H in such a manner that point G is the mid-point of points H and I. II. Point A is 10 km east of point F. Point B is 5 km south of point A. Point H is the midpoint of points A and B. Point I is 5 km south of point H. Point I is to the east of point L at a distance of 5 km.....
MCQ->Point out the error in the following code? typedef struct { int data; NODEPTR link; }NODEPTR;....
MCQ->What will be the output of the program? #include<stdio.h> int fun(int, int); typedef int (pf) (int, int); int proc(pf, int, int); int main() { printf("%d\n", proc(fun, 6, 6)); return 0; } int fun(int a, int b) { return (a==b); } int proc(pf p, int a, int b) { return ((p)(a, b)); }....
MCQ->In the following code snippet can we declare a new typedef named ptr even though struct employee has not been completely declared while using typedef? typedef struct employee ptr; struct employee { char name[20]; int age; ptr next; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions