will u give me old quesrion papers for aptitude for L & t
info tech?
Explain how to reverse singly link list.
What is external variable in c?
Does c have class?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Explain how does free() know explain how much memory to release?
Explain what is the difference between functions abs() and fabs()?
implement general tree using link list
praagnovation
What is a list in c?
How can I implement sets or arrays of bits?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
What is structure padding in c?