Submitted Questions

  • Java Include and Import Statement

    What is difference between #include and import statement?

    shilpa

    • Oct 12th, 2015

    Why the import keyword is more efficient than include?
    Above you mentioned only include copies unnecessary information and import not. But how? Give me the explanation clearly

    hari

    • Oct 29th, 2011

    #include in C/C++: #include makes a compiler to copy header file code into a C/C++ program. Dis Adv:It increase the program size unnecessary wastage of memory and process time. import in java : im...