write a corrected statement in c++ so that the statement
will work properly. x = y = z + 3a;


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

Post New Answer

More C++ General Interview Questions

What is a custom exception?

1 Answers  


How long will it take to learn programming?

0 Answers  


What is a template in c++?

3 Answers  


Define the process of error-handling in case of constructor failure?

0 Answers  


this is to swap to strings....but in output the whole strings are swapped leaving first as it is...why it is so #include<iostream.h> int main() { char a[]="ajeet"; char b[]="singh"; long x=*a; long y=*b; cout<<x<<":"<<y; x=x+y; y=x-y; x=x-y; *a=x; *b=y; cout<<x<<":"<<y; cout<<&a<<endl; cout<<&b<<endl; }

1 Answers  


please help to write the code of chess game in c++??????????

1 Answers   NEC,


Can we declare destructor as static? Explain?

3 Answers  


What are member functions used in c++?

0 Answers  


What is the difference between method overloading and method overriding in c++?

0 Answers  


How are Structure passing and returning implemented by the compiler?

0 Answers  


Which one between if-else and switch is more efficient?

0 Answers  


What is the Difference between "printf" and "sprintf"?

7 Answers   iSoft, PentaWare, TCS,


Categories