what does data structure mean?

Answer Posted / dippi

data structure is a structure in which elements having
different datatypes can be kept

Is This Answer Correct ?    5 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why is it that not all header files are declared in every C program?

676


How can my program discover the complete pathname to the executable from which it was invoked?

658


How to declare pointer variables?

681


How to write a multi-statement macro?

616


What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.

1779






1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.

2330


write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list

2225


What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?

727


What is a null pointer in c?

588


in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures

674


Why isnt there a numbered, multi-level break statement to break out

582


Why pointers are used?

627


How arrays can be passed to a user defined function

570


Explain what is meant by 'bit masking'?

638


int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer

647