An entire structure variable can be assigned to another
structure variable if __________

Answers were Sorted based on User's Feedback



An entire structure variable can be assigned to another structure variable if __________..

Answer / ullas

if it is of same type... i.e struct stu s1,s1; s1=s2;

Is This Answer Correct ?    52 Yes 3 No

An entire structure variable can be assigned to another structure variable if __________..

Answer / guest

you have overloaded the assignment operator and in that you
have copied each member variable.

Is This Answer Correct ?    23 Yes 9 No

An entire structure variable can be assigned to another structure variable if __________..

Answer / pakash

#3 ithink this one is apropriate answer if no read books for the anser

Is This Answer Correct ?    5 Yes 0 No

Post New Answer

More C Interview Questions

Why use int main instead of void main?

0 Answers  


what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green")

7 Answers   Cadence, JNTU, Zen Technologies,


Toggle nth bit in a given integer - num

5 Answers   Qualcomm,


What are the advantages of union?

0 Answers  


write a program that will read the temperature in Celsius and convert that into Fahrenheit.

1 Answers  






parkside's triangle.. create a program like this.. enter the size: 6 enter the seed: 1 output: 1 23 456 7891 23456 789123 sample2: enter the size: 5 enter the seed: 3 output: 3 45 678 9123 45678 parkside should not exceed 10 while its seed should only be not more than 9..

4 Answers  


Where are the auto variables stored?

0 Answers   TISL,


Why doesnt long int work?

0 Answers  


what will be the output of this program? #include<stdio.h> #define cube(x) x*x*x void main() { int i,j=5; i=cube(j+3); printf("i=%d",i); }

6 Answers   IBM,


What does typeof return in c?

0 Answers  


Can we declare function inside main?

0 Answers  


Explain argument and its types.

0 Answers  


Categories