What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.
No Answer is Posted For this Question
Be the First to Post Answer
What are c++ redistributables?
advantages and disadvantages of using Borland C++ / version 5.
What is purpose of abstract class?
Q1 On the screen how do you write the following words? she sells seashells by the seashore (a) all in one line (b) in three lines Q2 Write a program that asks interactively the user’s name and age and responds with Hello name, next year you will be next_age. where next_age is age + 1 Q3 For the different values of n, what is the output? printf(“%x %c %o %d”,n,n,n,n); (a) n = 67 (b) n = 20 (c) n = 128 (d) n = 255 (e) n = 100 Q4 What will be the output of the following program? int main() { char a,b,c; scanf(“%c %c %c”,&a,&b,&c); printf(“a=%c b=%c c=%c”,a,b,c); return 0; } [Note: The user input is:ABC DEF GHI]
You want to link a c++ program to c functions. How would you do it?
What is the limitation of cin while taking input for character array?
Define token in c++.
What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
Give an example of run-time polymorphism/virtual functions.
Write a function to perform the substraction of two numbers. Eg: char N1="123", N2="478", N3=-355(N1-N2).
Does improper inheritance have a potential to wreck a project?
What is code reusability in c++?