What is fixed in c++?


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

Post New Answer

More C++ General Interview Questions

What is the function of I/O library in C++ ?

0 Answers   HCL,


Explain how a pointer to function can be declared in C++?

0 Answers  


Which programming language is best to learn first?

0 Answers  


What is a constructor initializer list and when we use constructor initializer list?

3 Answers   Soft Info, TCS,


write the prime no program in c++?

16 Answers  






What are features of c++?

0 Answers  


Write a code/algo to find the frequency of each element in an array?

0 Answers   Axtria,


What is flush c++?

0 Answers  


How can you link a c++ program to c functions?

0 Answers  


Write about the local class and mention its use?

0 Answers  


What are the basic data types used in c++?

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  


Categories