Technical Placement C++ Question with Solution CLICK HERE FOR MORE...
1. void main()
{
int a, *pa, &ra;
pa = &a;
ra = a;
cout <<"a="<c++ placement interview Question with solution CLICK HERE FOR MORE...
1.class complex{
double re;
double im;
public:
complex() : re(0),im(0) {}
complex(double n) { re=n,im=n;};
complex(int m,int n) { re=m,im=n;}
void print() { cout<<
};
placement c++ programming language Question CLICK HERE FOR MORE...
1) Determine the output of the 'C++' Codelet.
class base
{
public :
out()
{
cout<<"base ";
}
};
Technical /logical interview questions and solution in C language CLICK HERE FOR MORE...
1.)
void main()
{
int const * p=5;
printf("%d",++(*p));
}