What is data structure in c language?



What is data structure in c language?..

Answer / Rishabh

Data structures in C are ways to organize and store collections of data so that they can be easily accessed, managed, and manipulated. Common examples include arrays, linked lists, stacks, queues, trees, and graphs.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

Why #include is used in c language?

1 Answers  


There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?

1 Answers   Hathway,


Why C language is a procedural language?

1 Answers   Ericsson,


How can we see the Expanded source code and compiled code for our source program in C?

1 Answers  


can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?

2 Answers  


matrix multiplication fails introspect the causes for its failure and write down the possible reasons for its failurein c language.

5 Answers   TCS,


Define and explain about ! Operator?

1 Answers  


What is pointers in c?

1 Answers  


write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.

1 Answers  


can we print any string in c language without using semicolon(;)(terminator) in whole program.

11 Answers  


What is meant by realloc()?

1 Answers  


What is #error and use of it?

1 Answers  


Categories