List the difference between a "copy constructor" and a "assignment operator"?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));

2 Answers  


Is it possible to pass an entire structure to functions?

0 Answers  


#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }

1 Answers   Vector India,


What is the purpose of ftell?

0 Answers  


Why preprocessor should come before source code?

2 Answers  






what are the different storage classes in c?

0 Answers   TCS,


What is the use of a conditional inclusion statement in C?

0 Answers   Global Logic,


write a own function for strstr

1 Answers   LG Soft,


What are multidimensional arrays?

0 Answers  


what is c

1 Answers  


f(char *p) { p=(char *)malloc(sizeof(6)); strcpy(p,"HELLO"); } main() { char *p="BYE"; f(p) printf("%s",p); } what is the output?

9 Answers   Hughes, Tech Mahindra,


main() { struct test { char c; int i; char m; } t1; printf("%d %d\n", sizeof(t1), sizeof(t1.c)); }

1 Answers   Vector, Vector India,


Categories