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 are the types of arrays in c?
main is a predefined or user define function if user defined why? if predefined whay?
Explain Linker and Loader
Explain the difference between struct and union.
Write a program to generate prime factors of a given integer?
write a function that accepts an integer/char array and an search item.If the search item is there in the array return position of array and value else return -1.without using other array,without sorting,not to use more than one loop?
Identify the correct argument for the function call fflush () in ANSI C: A)stdout B)stdin C)stderr D)All the above
Explain what is the general form of a c program?
Tell us bitwise shift operators?
What is logical error?
Explain the use of bit fieild.
What is volatile variable how do you declare it?