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 the real time usage volatile?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What the advantages of using Unions?
Is main is user defined function?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
what is constant pointer?
Tell us bitwise shift operators?
Is main is a keyword in c?
Explain heap and queue.
O,T,T,F,F,S,S,E,N,?,?,?,T,F,F,S,S,E,N
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.