Difference between #include and Import »



Q) what is difference between # include and import ?
A) #include makes the C/C++ compiler to physically copy the entire header file code into the ‘Cor C++’ programs, Thus the program size will increase unncessarly and hence it takes more memory and memory processor time.
Where as import statment makes the JVM to go to Java [...]