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 ?    25 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

what is uses of .net

0 Answers  


Can you think of a way when a program crashed before reaching main? If yes how?

2 Answers  


Explain what are its uses in c programming?

0 Answers  


#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?

4 Answers   Ramco,


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

0 Answers  






Program to find the absolute value of given integer using Conditional Operators

6 Answers   N Tech,


The C language terminator is a.semicolon b.colon c.period d.exclamation mark

6 Answers   TCS,


What is an lvalue in c?

0 Answers  


What does the error 'Null Pointer Assignment' mean and what causes this error?

0 Answers   TISL,


How to implement a packet in C

0 Answers   Aricent,


What is C++

4 Answers  


What is scanf_s in c?

0 Answers  


Categories