what is data structure
Answers were Sorted based on User's Feedback
Answer / ali
A data structure in computer science is a to store data in a
computer that can be used efficiently.It is an organitzation
of mathematical and logical concepts of data.
Is This Answer Correct ? | 3 Yes | 1 No |
Answer / cynthia
Data may be organized in different ways.The logical or
mathematical model of a particular organization of data is
called a data structure.
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / cynthia
Data may be organized in different ways.The logical or
mathematical model of a particular organization of data is
called a data structure.
Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vignesh1988i
data structure is nothing but basically C , in which our data can be efficiently handled without any memory wastages and data can be easily be retrieved for manipulations and strengthens the data security since the usage of POINTERS are more here........
thank u
Is This Answer Correct ? | 1 Yes | 1 No |
Answer / rohit sah
A data structure is a way of organizing data that considers not only the items stored, but also their relationship to each other. Advance knowledge about the relationship between data items allows designing of efficient algorithms for the manipulation of data.
Is This Answer Correct ? | 0 Yes | 0 No |
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
What is the full form of getch?
How to find the usage of memory in a c program
do ne body have any idea about the salary for the we r going to have interview. yup .. u got it right ..i m talking abt NIC.
What is pragma c?
implement NAND gate logic in C code without using any bitwise operatior.
Why doesnt the call scanf work?
I heard that you have to include stdio.h before calling printf. Why?
What are bitwise shift operators in c programming?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
Is register a keyword in c?