When a c file is executed there are many files that are automatically opened what are they files?
No Answer is Posted For this Question
Be the First to Post Answer
Does c have circular shift operators?
What is the use of keyword VOLATILE in C?
How do I get a null pointer in my programs?
without a terminator how can we print a message in a printf () function.
how to set Nth bit of variable by using MACRO
Why is sizeof () an operator and not a function?
What do you mean by c what are the main characteristics of c language?
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
What is structure in c language?
What is the main difference between calloc () and malloc ()?
What does struct node * mean?
What is nested structure?