Which of following is not a type of pointer in C++.
Memory used by an array is
Which of the following keyword is used to overload an operator?
What is the output of the following code?
int main()
{
printf("%c ", 3["Abekus"]);
return 0;
}
In which context does a stack operate?
Which type of data type conversion is not accepted in C?
Dividing a program into functions:
1. Is the key to object-oriented programming.
2. Makes the program easier to conceptualize.
3. May reduce the size of the program.
4. Makes the program run faster.
What happens when a function is declared with a void parameter?
How do lists differ from vectors?
Parul takes as input two numbers: a and b. a and b can take integer values between 0 and 255. She stores a, b and c as a 1-byte data type. She writes the following code statement to process a and b and put the result in c.
c=a+2*b To her surprise her program gives the right output with some input values of a and b, while gives an erroneous answer for others. For which of the following inputs will it give a wrong answer?