what are the advantages & disadvantages of unions?
Answer Posted / vadivelt
Main disadvantage is, all the union member variables cannot
be initialised or used with different values at a time.
| Is This Answer Correct ? | 45 Yes | 14 No |
Post New Answer View All Answers
What is the process to create increment and decrement stamen in c?
Explain how do you print an address?
What is printf () in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
explain how do you use macro?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Explain what is operator promotion?
Explain built-in function?
What is a good way to implement complex numbers in c?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What is void pointers in c?
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop
Who invented bcpl language?
Is there anything like an ifdef for typedefs?
Explain how does free() know explain how much memory to release?