Java Programming Code Examples
Java > Swing Code Examples
Adding Items and Removing Itesm from JList
Convert Binary Code of a Number into its -
C Programming Language code to convert binary code of a number into its equivalent gray's code without using recursion. Gray is also represented using 0s and 1s. Speciality
Checking Character is Vowel or Consonant -
Alphabets a, e, i, o, u are known as vowels. All other alphabets except these 5 alphabets are known are 'consonants'. C++ sample assumes that the user will enter an Alphabet. Similarly
How to use Void (void) Data Type in The C -
Void in C means 'nothing' or 'no-value'. This is used either with pointer declarations or with function declarations. And declares function which takes no arguments but returns an...
Code Nonzero If ch is a White-Space Char -
C Programming Language codings to returns nonzero if ch is a white-space char, including space, horizontal tab, vertical tab, formfeed, carriage return, newline character; otherwise
Find k Numbers closest to Median of the S -
Firstly We need to find k numbers which have a minimum difference with the median of the data set. It includes sorting using 'Quick Sort' and then printing k numbers as a result. Time
Bubble Sorting on int array in C Language -
C program bubble sorting code on int array. Reading in numbers. Sorting them using a bubble sort. Comparing adjacent elements. Exchange elements. Display sorted list.
Binary Search Tree Code in C++ Language -
Smaller elements go left. Larger elements go right. All insertions are as leaf nodes. Remove a leaf node and remove a node with a single child. Remove a node with 2 children, replace
Program to Accept Paragraph Using Scanf -
C Language program accept paragraph using scanf. 'Scanf' accept Characters entered with spaces and it also accepts the words, newline characters. 'Represent' that all characters are