Difference between struct and class in terms of access modifier.
No Answer is Posted For this Question
Be the First to Post Answer
What does the nocreate and noreplace flag ensure when they are used for opening a file?
How do you sort a sort function in c++ to sort in descending order?
Is c++ the best programming language?
What is abstraction c++?
What is the difference between a template and a macro?
What is the difference between the parameter to a template and the parameter to a function?
Write a single instruction that will find the remainder of integral division when x is divided by y. Have the answer stored in z.
Write a struct time where integer m, h, s are its members?
They will ask u question about single linked list?. Write Code for to insert delete node.
What is std::move?
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; }
Write a single instruction that will store an EVEN random integer between 54 and 212 inclusive in the variable myran. (NOTE only generate EVEN random numbers)