An entire structure variable can be assigned to another
structure variable if __________
Answers were Sorted based on User's Feedback
Answer / ullas
if it is of same type... i.e struct stu s1,s1; s1=s2;
Is This Answer Correct ? | 52 Yes | 3 No |
Answer / guest
you have overloaded the assignment operator and in that you
have copied each member variable.
Is This Answer Correct ? | 25 Yes | 9 No |
Answer / pakash
#3 ithink this one is apropriate answer if no read books for the anser
Is This Answer Correct ? | 5 Yes | 0 No |
What is that continue statement??
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is the incorrect operator form following list(== , <> , >= , <=) and what is the reason for the answer?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
How will you delete a node in DLL?
How can I rethow can I return a sequence of random numbers which dont repeat at all?
write a program to rearrange the array such way that all even elements should come first and next come odd
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is atoi and atof in c?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
Tell us something about keyword 'auto'.