to find the closest pair
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
what is the difference between const volatile int i & volatile const int j;
What are the advantages of external class?
What is the difference between exit() and _exit()?
void main() { static int i = 5; if(--i) { main(); printf("%d ",i); } } what would be output of the above program and justify your answer? }
5 Answers C DAC, CDAC, Infosys, Wipro,
how to swap 2 numbers within a single statement?
Implement bit Array in C.
diff between exptected result and requirement?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
How to add two numbers with using function?
Do you know the use of 'auto' keyword?