Explain how do you sort filenames in a directory?
No Answer is Posted For this Question
Be the First to Post Answer
In a switch statement, what will happen if a break statement is omitted?
Write a program to generate the first n terms in the series --- 2,3,5,7,11,...,17
Define circular linked list.
What is the difference between if else and switchstatement
Can u please send me the exam pattern and also Previous papers to javed123go@gmail.com
What does do in c?
How will you allocate memory to double a pointer?
What are different types of pointers?
write function to reverse char array ... without using second array
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
an algorithem for the implementation of circular doubly linked list
c program to input values in a table(using 2D array) and print odd numbers from them