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 |
What is C language Terminator?
What is a sequential access file?
What are types of preprocessor in c?
How does struct work in c?
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
what is level of tree if leaf node is at level 4.please explain.
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What is typedef example?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
Is main is user defined function?