Sunday, February 27, 2011

Placement Questions With Solution of C/C++ Programming

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));
  }


FREE Advanced C Programming Tutorials

C++ programming language FAQ

PREPROCESSOR Question and Answer for Placement in C programming language

1) #define max 10
void main()
{
int i;
i=++max;
clrscr();

printf("%d",i);
getch();
}


Operators C Programming Language Question with Explanation

1)what will output ?
void main()
{
float a=0.7;
if(a<0.7)
printf("C");
}
else
{
printf("C++");
}}


 CLICK HERE FOR MORE..... 

Placement Question Basic C/ C++ programming language - Frequently Asked Questions

What is the difference between a copy constructor and an overloaded assignment operator?

 CLICK HERE FOR MORE..... 

Placement Question with Solution Basic of C/ C++ programming language /OOPS - - Frequently Asked Questions

1) What is Dangling Pointer?

My Blog List