9.how do you write a function that takes a variable number
of arguments? What is the prototype of printf () function?
10.How do you access command-line arguments?
11.what does ‘#include<stdio.h>’ mean?
12.what is the difference between #include<> and #include”…”?
13.what are # pragma staments?
14.what is the most appropriate way to write a
multi-statement macro?
how can make variable not in registers
what are threads ? why they are called light weight processes ? what is the relation between process and threads ?
What are the different types of control structures?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
How do you prevent buffer overflows in C?
What do you mean by Recursion Function?
How can I call a function with an argument list built up at run time?
What are the advantages of using new operator as compared to the function malloc ()?
write a program to interchange the value between two variable without using loop
Is a pointer a kind of array?
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????