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 |
Is c still used?
5. distance conversion: Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
what is the purpose of the code, and is there any problem with it. unsigned int v[10]; unsigned int i = 0; while (i < 10) v[i] = i++;
code snippet for creating a pyramids triangle ex 1 2 2 3 3 3
What are control structures? What are the different types?
how can i get this by using for loop? * ** * **** * ******
What is the function of volatile in c language?
write a c program to do the following: a) To find the area of a triangle. b) To convert the temperature from Fahrenheit to Celsius. c) To convert the time in hours : minutes : seconds to seconds.
What is the proper way of these job Tell me about there full work
Differentiate between Macro and ordinary definition.
What is the difference between macros and inline functions?
Can we use any name in place of argv and argc as command line arguments?