Q.1 write aprogram to stack using linklist o insert 40 items?
Q.2 write a program to implement circular queue with help of
linklist?
No Answer is Posted For this Question
Be the First to Post Answer
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(); }
Is the exit() function same as the return statement? Explain.
0 Answers Agilent, ZS Associates,
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
What is array of pointers to string?
what is the difference between structural,object based,object orientd programming languages?
regarding the scope of the varibles;identify the incorrect statement: a.automatic variables are automatically initialised to 0 b.static variables are are automatically initialised to 0 c.the address of a register variable is not accessiable d.static variables cannot be initialised with any expression
number of times a digit is present in a number
What does %d do?
Why is malloc used?
What is c++ used for today?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.