How can I recover the file name given an open stream or file descriptor?
No Answer is Posted For this Question
Be the First to Post Answer
What is structure padding in c?
How do you declare a variable that will hold string values?
How is = symbol different from == symbol in c programming?
What is the main differences between C and Embedded C?
how to set Nth bit of a variable?
What is a pointer in c?
wats SIZE_T meant for?
Are pointers really faster than arrays?
Is c programming hard?
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
How do you initialize function pointers? Give an example?
What are .h files and what should I put in them?