How many adaptors support the checked iterators?
Which of the following escape sequences represents a carriage return?
What do we need to use when we have multiple subscripts?
How are negative numbers stored in C language?
fflush(NULL) flushes all buffered output streams.
int * p1 = &x;
What is the standard C++ library?
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int main()
{
int i = 3;
int l = i / -2;
int k = i % -2;
cout << l << k;
return 0;
}
What are the main uses of pointers in C?
What will be the output of the following C++ code?
#include <iostream>
using namespace std;
int mult (int x, int y)
{
int result;
result = 0;
while (y != 0)
{
result = result + x;
y = y - 1;
}
return(result);
}
int main ()
{
int x = 5, y = 5;
cout << mult(x, y) ;
return(0);
}