Tag: programming

  • Breaking myth about C and C++

    Breaking Myths about C and C++ – Part 1 Myth C++ is a high level Language Reality The Answer is NO. Both C and C++ is middle level language. Though, C++ tends toward high –level languages but still it has some middle-level languages feature like pointers. If there are pointers, we can interact with address; we can… Read.

  • The ‘Maya’ of static

    What if you want to implement main() function in the program. What should be the syntax? public static void main( string[] args) is the customary declaration of main() function followed by its definition. Why to declare main() function static? The reason is that there is only one main() method in a particular class and it… Read.

  • Writing your first JDBC Application?

    Ok, after a long time, here is core technical blog for all of u. If u r wondering how to access MySQL database using JAVA program. The answer is JDBC application! Before going to coding, u must understand certain aspects of JDBC programming. 1. You must include Jconnector in the classpath of ur machine so… Read.