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 c basic?
what is the full form of c language
how write a addtion of two single dimensional array using of pointer in c language?
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
What is C language Terminator?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
What is the exact difference between '\0' and ""
Write code for finding depth of tree
write a program to fined second smallest and largest element in a given series of elements (without sorting)
how to find the given number is prime or not?
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
What does volatile do?