Java enum constructor

enum%20constructor%20java

In Java, an enumeration is a special kind of class that represents a fixed number of predefined values. The values are defined as enum constants, which are static... read more ?

jstl if else string comparison

jstl%20if%20else

 In JavaServer Pages (JSP), the JSTL (Java Standard Tag Library) provides a set of tags that you can use to perform common tasks, such as iterating over a... read more ?

C program to print table of 2 using for loop

mutliplication%20table

#include <stdio.h>int main() {    int i;The first line includes the standard input/output header file, which is needed for the printf function used later in the program.The main... read more ?

C program to find the largest element in an array

largest%20element%20in%20array

C program that finds the largest element in an array :#include <stdio.h>int main() {  int n, i;  long long int t1 = 0, t2 = 1, nextTerm;  printf("Enter... read more ?

Fibonacci series program in c

fibonacci

Here is a simple program that prints out the first n numbers in the Fibonacci series in C:#include <stdio.h>int main() {  int n, i;  long long int t1... read more ?

Introduction to C language

Introduction to C     C is a general purpose programming language. Programming language is the means to communicate with the system to get our thing done.Need for a programming language: ... read more ?

Factorial program in python

Untitled

#write a python program for factorial of a given number.num = int(input("Enter a number: "))factorial = 1if num < 0:   print("factorial not exist for negative numbers")elif num ==... read more ?

Select Menu