plz send me all data structure related programs

Answers were Sorted based on User's Feedback



plz send me all data structure related programs..

Answer / santosh

answer

Is This Answer Correct ?    2 Yes 2 No

plz send me all data structure related programs..

Answer / prof.muthu

stack,queue,tree,graph....
these are muthu's data structure...,
plant,fruits,line
if u want to learn my data structure please feel free to
call me!

ph:+919962940220

by prof.muthu....(c/o Anitha mosess)

Is This Answer Correct ?    2 Yes 4 No

Post New Answer

More C Code Interview Questions

Write a c program to search an element in an array using recursion

1 Answers   Wipro,


main() { extern int i; i=20; printf("%d",i); }

1 Answers   Value Labs,


Link list in reverse order.

8 Answers   NetApp,


1 o 1 1 0 1 0 1 0 1 1 0 1 0 1 how to design this function format in c-language ?

2 Answers  


main() { int i; float *pf; pf = (float *)&i; *pf = 100.00; printf("\n %d", i); } a. Runtime error. b. 100 c. Some Integer not 100 d. None of the above

2 Answers   HCL, LG,






main() { char *p; p="Hello"; printf("%c\n",*&*p); }

1 Answers  


int swap(int *a,int *b) { *a=*a+*b;*b=*a-*b;*a=*a-*b; } main() { int x=10,y=20; swap(&x,&y); printf("x= %d y = %d\n",x,y); }

1 Answers  


program to find magic aquare using array

4 Answers   HCL,


Given a list of numbers ( fixed list) Now given any other list, how can you efficiently find out if there is any element in the second list that is an element of the first list (fixed list)

3 Answers   Disney, Google, ZS Associates,


main() { printf("%d", out); } int out=100;

3 Answers  


What is data _null_? ,Explain with code when u need to use it in data step programming ?

0 Answers   Abbott,


Is the following code legal? void main() { typedef struct a aType; aType someVariable; struct a { int x; aType *b; }; }

1 Answers  


Categories