List some of the dynamic data structures in C?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?

0 Answers  


what is calloc and malloc?

2 Answers  


main() { int a; a=++100; printf("%d",a); getch(); }

4 Answers  


What is scope rule in c?

0 Answers  


What is c preprocessor mean?

0 Answers  






Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?

0 Answers  


Write a program to print this triangle: * ** * **** * ****** * ******** * ********** Don't use printf statements;use two nested loops instead. you will have to use braces around the body of the outer loop if it contains multiple statements.

6 Answers   Wipro,


int i=10; printf("%d %d %d", i, i=20, i);

0 Answers  


A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler

0 Answers  


void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }

3 Answers  


How does C++ help with the tradeoff of safety vs. usability?

1 Answers  


What is the difference between mpi and openmp?

0 Answers  


Categories