Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 

Search In

Difference between “int main()” and “int main(void)” in C.

Consider definition of int main(): int main() { return 0; } Consider definition of int main(void): int main(void) { return 0; } The above two definition work perfectly fine in C but the difference between two is int main() can b

How Technology has Increased B2B Sales

Advancements in technology have been able to transform many sectors and job functions, including B2B sales. These advancements are usually exciting, but keeping up with them can be overwhelming. However, falling behind on the greatest and latest tech

How to create DLL file from java?

Hello Guy's This Blog will guide how to create DLL file from java using JNI. Please follow the below instructions. First create a java file that contains the native method and it loads the DLL file. Create TestDLL.java and put below code : public

Getting Springs, Hibernate Exception in Java

Can someone help me with this exception in Java,Springs,Hibernate.   Caused by: java.sql.SQLException: An SQLException was provoked by the following failure: java.lang.InterruptedException at com.mchange.v2.sql.SqlUtils.toSQLExceptio

How to import mysql database using command line?

Sometimes when you have large databases files and you are unable to import the database manually. Then the easiest (and fastest) way is to use command line. Import:-- 1. Run the cmd (DOS) and get into the mysql folder, which in my case works like

Polymorphism in php

Hello Readers If we break the word Polymorphism poly means many (Poly = many) and morph means change ( Morph = change or form). Its basically the concept of object oriented programming (OOPS) in which classes have differernt functionality and use a

Visibility Scope Of Variable And Functions

There are three type of visibility scope: Public Private Protected PUBLIC: Variable or function of public scope can be accessed throughout the program. PRIVATE : Variable or function of private scope can be accessed only with in the class they

union in C

A union is a special data type available in C that allows to store different data types in the same memory location just like structures in C. Union uses a single shared memory location which is equal to the size of its largest data member. It provi

How to use after() method in JQuery?

after(): In JQuery, after() method is used to insert the data or content at the end as sibling of the element specify by the parameter. Syntax: $(selector).after(content,function(index,html)) Here, we have passed two parameters in the method:

How to use append() method in JQuery?

append(): In JQuery, append() method is used to insert the data or content at the end of the element as child element specify by the parameter. Syntax: $(selector).append(content,function(index,html)) Here, we have passed two parameters in the

1 17 319
Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: