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

main( ) { int a[2][3][2] = {{{2,4},{7,8},{3,4}},{{2,2},{2,3},{3,4}}}; printf(“%u %u %u %d \n”,a,*a,**a,***a); printf(“%u %u %u %d \n”,a+1,*a+1,**a+1,***a+1); }

2 Answers  


To reverse an entire text file into another text file.... get d file names in cmd line

0 Answers   Subex,


plz tell me the solution.......... in c language program guess any one number from 1 to 50 and tell that number within 8 asking question in yes or no...............

2 Answers   Wipro,


Write a program that find and print how many odd numbers in a binary tree

1 Answers  


Give a one-line C expression to test whether a number is a power of 2.

10 Answers   Microsoft,






prog. to produce 1 2 3 4 5 6 7 8 9 10

4 Answers   TCS,


Write a C program to print ‘Campus Force training’ without using even a single semicolon in the program.

3 Answers   Wipro,


main() { int (*functable[2])(char *format, ...) ={printf, scanf}; int i = 100; (*functable[0])("%d", i); (*functable[1])("%d", i); (*functable[1])("%d", i); (*functable[0])("%d", &i); } a. 100, Runtime error. b. 100, Random number, Random number, Random number. c. Compile error d. 100, Random number

1 Answers   HCL, rsystems,


write a program to find out roots of quadratic equation "x=-b+-(b^2-4ac0^-1/2/2a"

2 Answers  


main() { char *cptr,c; void *vptr,v; c=10; v=0; cptr=&c; vptr=&v; printf("%c%v",c,v); }

1 Answers  


what is the output of following program ? void main() { int i=5; printf("%d %d %d %d %d ",i++,i--,++i,--i,i); }

10 Answers  


main() { char *a = "Hello "; char *b = "World"; clrscr(); printf("%s", strcat(a,b)); } a. Hello b. Hello World c. HelloWorld d. None of the above

3 Answers   HCL,


Categories