How can you increase the allowable number of simultaneously open files?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is a program flowchart and explain how does it help in writing a program?
different between overloading and overriding
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
What is quick sort in c?
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
how to find the binary of a number?
How are pointers declared in c?
pointer_variable=(typecasting datatype*)malloc(sizeof(datatype)); This is the syntax for malloc?Please explain this,how it work with an example?
2 Answers eClerx, Excel, kenexa,
What does volatile do?
int x=5; printf("%d%d%d",x,x<<2,x>>2);
What is linear search?
Why doesnt that code work?