What is the largest prime number that can be stored in an 8-bit memory?
How many times is "Abekus" printed?
Which of the following belongs to the set of character types?
#include<stdio.h>
int main()
{
int shift,m=0570;
shift=m>>4;
shift=m<<6;
printf("%d",shift);
return 0;
}
When is a destructor called?
Which member function is used to determine whether the stream object is currently associated with a file?
What are the disadvantages of using multiple inheritance?
What will be the output of the following C++ code?
#include <stdio.h>
#include <stdlib.h>
int main()
{
div_t divresult;
divresult = div(38, 5);
printf("%d", divresult.rem);
return 0;
}
What will be the output of the following C++ code?
#include <iostream>
#include <string>
#include <cstdlib>
using namespace std;
int main(int argc, char const *argv[])
{
int a = 5;
int *p = &a;
int *(&q) = p;
cout<<q;
return 0;
}