Explain object slicing in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What are stacks? Give an example where they are useful.
What is the operator in c++?
Write a program to swap 2 chars without using a third varable? char *s = "A"; char *p = "B";
How does c++ sort work?
What is the auto keyword good for in c++?
Why do we use structure in c++?
What is std :: flush?
How to get the current position of the file pointer?
Write a program to encrypt the data in a way that inputs a four digit number and replace each digit by (the sum of that digit plus 7) modulus 10. Then sweep the first digit with the third, second digit with the fourth and print the encrypted number.
Explain register storage specifier.
Given a simple program designed to take inputs of integers from 1-1000 and to output the factorial value of that number, how would you test this program? You do not have access to the code. Please be as specific as possible.
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?