explain about storage of union elements.
Answer Posted / saranya
union elements share common memory space
| Is This Answer Correct ? | 18 Yes | 0 No |
Post New Answer View All Answers
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
How to Throw some light on the splay trees?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is the scope of local variable in c?
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
What are the functions to open and close the file in c language?
Can a variable be both constant and volatile?
What are pragmas and what are they good for?
What is memory leak in c?
Why main is used in c?
What are the salient features of c languages?
How will you print TATA alone from TATA POWER using string copy and concate commands in C?
Explain what is a pragma?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
any limit on the number of functions that might be present in a C program a) max 35 functions b) max 50 functions c) no limit d) none of the above