An entire structure variable can be assigned to another
structure variable if __________
Answer Posted / ullas
if it is of same type... i.e struct stu s1,s1; s1=s2;
| Is This Answer Correct ? | 52 Yes | 3 No |
Post New Answer View All Answers
What is the difference between exit() and _exit() function in c?
Tell me can the size of an array be declared at runtime?
What are formal parameters?
Write the syntax and purpose of a switch statement in C.
What are the properties of union in c?
Where is c used?
Why is c platform dependent?
What is the use of #include in c?
Describe the difference between = and == symbols in c programming?
What does calloc stand for?
What is gets() function?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
Who developed c language?
How to write a multi-statement macro?
What is the correct declaration of main?