Star Pattern 1 – Half pyramid pattern in C programming language using stars

Half pyramid pattern in C programming language using stars In this program, we will see the Half pyramid pattern in C programming or the half triangle pattern. * ** *** **** ***** The C program for above half pyramid pattern is as follows: #include<stdio.h> int main() { int i,j, no_rows; printf(“Enter number of rows for … Read more

Number Pattern 14 – Inverted pyramid pattern of numbers in C programming

Number Pattern 14-Inverted pyramid pattern of numbers in C programming In this program, we will see the inverted pyramid pattern or triangle of numbers in C programming language. Please look into the program. 11111 2222 333 44 5 The C program for Inverted pyramid pattern of numbers is as follows: #include <stdio.h> int main() { … Read more

Eclipse not recognizing Classes and Strings in Java – Error: Could not find or load main class StaticDemo

Hello friends, Maybe you are a beginner in Java or maybe having some experience in Java development, you might have encountered this weird error in Eclipse IDE. The error when Eclipse refuses to recognize Classes and String in it and gives error “Error: Could not find or load main class StaticDemo”. This is the case when Eclipse not … Read more