List some of the dynamic data structures in C?



List some of the dynamic data structures in C?..

Answer / Ankush Jain

[Linked List, Stack, Queue, Tree]

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC

2 Answers   Mphasis,


#define DCHAR char* typedef char* TCHAR; if using these following variables will be declared like DCHAR ch1, ch2; TCHAR ch3, ch4; then what will be types of ch1, ch2, ch3 and ch4?

6 Answers   NDS,


Write a program to print factorial of given number without using recursion?

1 Answers  


What is the basic structure of c?

1 Answers  


Program to simulate second clock

2 Answers  


difference between ordinary variable and pointer in C?

2 Answers  


Two's compliment of -5

4 Answers   Adobe,


What is #error and use of it?

1 Answers  


what do you mean by defining a variable in our c code?

2 Answers  


What is gets() function?

1 Answers  


What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }

2 Answers  


without using arithmatic operator solve which number is greater??????????

1 Answers   Accenture,


Categories