Write a program to generate the first n terms in the series --- 9,11,20,31,...,82
what is the return value (status code) of exit() function.... what the arguments(integer value) passed to it means....
what is the difference between structure and union?
Explain how can you determine the size of an allocated portion of memory?
Explain how do you list a file’s date and time?
What is alloca() and why is its use discouraged?
When should I declare a function?
c program to manipulate x=1!+2!+3!+...+n! using recursion
What are static variables in c?
where are auto variables stored? What are the characteristics of an auto variable?
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
Can a pointer be null?
HOW CAN ADD OUR FUNCTION IN LIBRARY.