how to create duplicate link list using C???
No Answer is Posted For this Question
Be the First to Post Answer
How can I find out how much free space is available on disk?
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
What is a pointer and how it is initialized?
Compare interpreters and compilers.
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
What is array of structure in c?
Explain what does a function declared as pascal do differently?
Write a program using bitwise operators to invert even bits of a given number.
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
What is the difference between single charater constant and string constant?
write a recursive program in'c'to find whether a given five digit number is a palindrome or not