what are the uses of structure?
Answers were Sorted based on User's Feedback
Answer / suneela
it is a collection data items of different data types using
a single name
| Is This Answer Correct ? | 12 Yes | 0 No |
Answer / varu
writing program for database management like emplyoee
records....
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / nithla
we can group the hetrogenous data by using the structure.
| Is This Answer Correct ? | 7 Yes | 0 No |
1.changing d sizeof cursor,
2 clearing d content of screen,
3 drawing graphics shapes
4 formatting floppy drive
5 interacting with mouse
| Is This Answer Correct ? | 7 Yes | 8 No |
How do i store a paragraph into a string? for example, if i input a long paragraph, the program will read the words one by one and concatenate them until no word is left.
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
What are linked lists in c?
What is the use of extern in c?
If I want to initialize the array like. int a[5] = {0}; then it gives me all element 0. but if i give int a[5] = {5}; then 5 0 0 0 0 is ans. what will I do for all element 5 5 5 5 5 in a single statement???
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is the code for 3 questions and answer check in VisualBasic.Net?
How to define structures? ·
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
Describe how arrays can be passed to a user defined function
What is const volatile variable in c?