Latest :

Author Archives: Java Tutor

C Program Inverted Pyramid Star Pattern | 4 Ways – C Programs

C Program to print an inverted pyramid star pattern – In this article, we will detail in on the multiple ways to print an inverted pyramid star pattern in C programming. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with which you can ...

Read More »

C Program To Check If Alphabet, Digit or Special Character | C Programs

C program to check for an alphabet, digit or special character – In this article, we will detail in on the standard method of determining whether any character is an alphabet, digit or a special character. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been ...

Read More »

Java Program To Print Hollow Mirrored Rhombus | 4 Ways

Java program to print or draw the hollow mirrored rhombus star/asterisk in four different ways. The following program has been written in four different ways along the sample example program and outputs. At this end of this section, we added an execution tool where you can able to execute the program. Learn more about what are data types in Java, ...

Read More »

Armstrong Number In Java Program – 5 Simple Ways

Armstrong number in Java. Here we have written the code in four different ways standard, using for loop, recursion, while loop and also with different examples as like: between 100 and 999, between 1 to 1000 and between 1 to 500 with sample outputs and online execution tool embedded. What is Armstrong Number? A: An Armstrong number of three digits is an ...

Read More »

C Program To Check Whether A Character Is Alphabet or Not

C Program to check for an alphabet or not – In this particular article, we will detail in on the standard method used to check for an alphabet or not in C programming. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with which ...

Read More »

Reverse A String In Java – 4 Ways | Programs

Reverse A String In Java – Here, we have discussed the various methods to reverse a string using java. The compiler has been added so that you can execute the programs by yourself, alongside suitable examples and sample outputs. The methods are as follows: The following program to find reverse a string has been written in five different ways. If you ...

Read More »

C Program To Check Character Is Uppercase or Lowercase | C Programs

C program to check whether an alphabet is uppercase or lowercase – In this article, we will detail in on how to check for a character to be an uppercase or lowercase alphabet in C programming. Only the standard method is going to be used to carry out the same. Suitable examples and sample programs have also been added so ...

Read More »

C Program To Check Whether A Year Is Leap Year Or Not | C Programs

C program to check whether a year is a leap year or not – In this article, we will talk about the way to check whether a year is a leap year or not. Suitable examples and sample programs have also been added so that you can understand the whole thing very clearly. The compiler has also been added with ...

Read More »

Loops In C – Tutorial With Examples | C Programming

A loop is a construct used to execute a set of statements repeatedly. In C language, we have 3 kinds of looping constructions. Though syntactically different, the purpose of these three is same. Different Types of Loops In C Programming Most common used Loops are as follows: While  Loop Do while Loop For Loop Rest of the Loops as follows: ...

Read More »

Hollow Rhombus Star Pattern Java Program

Java program to print Hollow rhombus star pattern program. We have written below the print/draw Hollow rhombus asterisk/star pattern program in four different ways with sample example and output, check it out. At the end of the program, we have added compiler so that you can execute the below codes. Using For Loop Using While Loop Using Do While Loop  Using ...

Read More »