what is data structure?
Answers were Sorted based on User's Feedback
Answer / anandshan01
A data structure is particular way of storing and
organising data in a computer so that it can be
efficiently...
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / raju
ds is a collection of data elements and arranhed aspcific
manner
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / p.saravanana
Data structure is a (computer science) the organization of
data (and its storage allocations in a computer)
| Is This Answer Correct ? | 2 Yes | 1 No |
How do you determine the length of a string value that was stored in a variable?
What is character constants?
Write a code to generate divisors of an integer?
Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......
How to write a code for implementing my own printf() and scanf().... Please hep me in this... I need a guidance... Can you give an coding for c... Please also explain about the header files used other than #include<stdio.h>...
Difference Between embedded software and soft ware?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
How can we see the Expanded source code and compiled code for our source program in C?
how do we remove the printed character in printf statement and write next it it
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.
A.C func() { pritnf(" in fuction %d",MACRO); } MAIN.c testfunc() { #define MACRO 10 printf("in test function %d", MACRO); } main() { printf("in main %d",MACRO); func(); testfunc(); getch(); }
struct ptr { int a; char b; int *p; }abc; what is d sizeof structure without using "sizeof" operator??