What is size of generic pointer in C++ (in 32-bit platform)?
Which is the correct way to declaring pointer ?
C++ was originally developed by
What is source language for Assembler ?
Which of the following access specifier is used as a default in a class definition?
Which functions in programming have the return type void?
What is the output of the following program?
#include< stdio.h>
int main()
{
static int a = 3;
printf(“%d”, a --);
return 0;
}
What is operator overloading in C++?
// continue loop example
#include <iostream>
using namespace std;
int main ()
{
for (int n=10; n>0; n--) {
if (n==5) continue;
cout << n << ", ";
}
cout << "liftoff!\n";
}