What is difference between structure and union?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What is Full Form of C and Why We use C

23 Answers  


How can I access a memory located at certain address?

2 Answers   CSC,


main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }

1 Answers   CodeChef,


How does pointer work in c?

0 Answers  


we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above

0 Answers  






c program to subtract between two numbers without using '-' sign and subtract function.

2 Answers  


Can we declare function inside main?

0 Answers  


Explain the difference between structs and unions in c?

0 Answers  


c program to input values in a table(using 2D array) and print odd numbers from them

1 Answers  


What is difference between Structure and Unions?

0 Answers   TISL,


any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above

0 Answers  


void main() { int i=5; printf("%d",i++ + ++i); }

21 Answers   ME,


Categories