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 uses of .net
Can you think of a way when a program crashed before reaching main? If yes how?
Explain what are its uses in c programming?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
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
Program to find the absolute value of given integer using Conditional Operators
The C language terminator is a.semicolon b.colon c.period d.exclamation mark
What is an lvalue in c?
What does the error 'Null Pointer Assignment' mean and what causes this error?
How to implement a packet in C
What is C++
What is scanf_s in c?