What is life cycle of a thread?

                        Life cycle of a thread A thread can have five different states, during its life time a thread is always in any one of these states and can move …

What is union?

Union The concept of the union is same like the structure the difference is of their storage method. All the data-members of the union are share same storage area. Union …

What is JDK (java development kit)?

 JDK (java development kit) The JDK is a Sun’s tool kit for creating java software. It contains useful tools such as: 1.      Compiler 2.      Virtual machine 3.      Class library 4.      …

What are string handling functions?

String handling functions: 1.      strlen(): This function tells the number of character in a string. This will be as follows: l=strlen(string); where l is integer. 2.      strcat():  This function is …