What is the difference between #import and #include in c++?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C++ General Interview Questions

How does com provide language transparency?

0 Answers  


What is null c++?

0 Answers  


I was a c++ code and was asked to find out the bug in that. The bug was that he declared an object locally in a function and tried to return the pointer to that object. Since the object is local to the function, it no more exists after returning from the function. The pointer, therefore, is invalid outside.

0 Answers  


1. What does the following do: void afunction(int *x) { x=new int; *x=12; } int main() { int v=10; afunction(&v); cout<<v; } a) Outputs 12 b) Outputs 10 c) Outputs the address of v

5 Answers   Quark,


What is object in c++ example?

0 Answers  






What is the Difference between "printf" and "sprintf"?

7 Answers   iSoft, PentaWare, TCS,


what is upcasting in C++?

0 Answers  


Difference between class and structure.

0 Answers  


What is the difference between global int and static int declaration?

0 Answers  


What is the syntax for a for loop?

0 Answers  


What is the use of function pointer?

0 Answers  


How do you establish an is-a relationship?

0 Answers  


Categories