what is the defrenece between structure and union
Answer Posted / nayanprakash
union is better then structure.union is declared with
keyword union.it can store more data which can store at
hights byte of veeriable is declared.structure is declred
a keyword struct.it will store for indivisul memory space.
| Is This Answer Correct ? | 1 Yes | 5 No |
Post New Answer View All Answers
What is self-referential structure in c programming?
What is the use of getchar() function?
Is the exit() function same as the return statement? Explain.
Explain enumerated types.
what is the c source code for the below output? 5555555555 4444 4444 333 333 22 22 1 1 22 22 333 333 4444 4444 5555555555
What is the purpose of scanf() and printf() functions?
write a program to concatenation the string using switch case?
Describe dynamic data structure in c programming language?
Explain how can I make sure that my program is the only one accessing a file?
What is pragma in c?
How can I recover the file name given an open stream or file descriptor?
Explain the difference between structs and unions in c?
How can I generate floating-point random numbers?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.