Explain union. What are its advantages?
No Answer is Posted For this Question
Be the First to Post Answer
What are the characteristics of arrays in c?
difference between Low, Middle, High Level languages in c ?
in a town the percentage of men is 52 the percentage of total literacy is 48 if total percentage of literate men is 35 of the total population write a program to find the total no of the literate men and women if the population of the town is 80000
Explain how can you determine the size of an allocated portion of memory?
How #define works?
What is difference between union and structure in c?
Is file a keyword in c?
What is the difference between int main and void main?
int i =10 main() { int i =20,n; for(n=0;n<=i;) { int i=10 i++; } printf("%d", i);
The differences between Windows XP and Windows Visa
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
Why c is called a mid level programming language?