What is a far pointer? where we use it?
No Answer is Posted For this Question
Be the First to Post Answer
Give 10 points of differences between C & C++.
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; }
How the keyword struct is different from the keyword class in c++?
What is copy constructor? Can we make copy constructor private in c++?
Is there finally in c++?
There is a array of 99 cells and we have to enter 1-100 elements in it , no two elements would repeat , so the is one no. missing because 99 cells and 1-100 nos. so we had to implement a function to find that missing no.
How did c++ get its name?
What flag means?
How do you compile the source code with your compiler?
Explain the ISA and HASA class relationships. How would you implement each in a class design?
Is arr and &arr are same expression for an array?
why c++ is not called strictly d super set of c?