Write a program for printing first n prime numbers in C# In this article, we will discuss the concept of the Write a program for printing first n prime numbers in C# In this post, we are going to learn how to write a program to find first n prime numbers and display the result…
Category: loops
C Sharp Exercise: print Pascal triangle pattern
C Sharp Exercise: print Pascal triangle pattern In this tutorial, we will discuss the title of C Sharp Exercise: print Pascal triangle pattern In this post, we are going to learn how to display the pascal triangle number pattern in C# language using for and while loop, Program to generate pascal’s triangle Program to display…
C exercise: Pascal’s triangle pattern using 2D Array
C exercise: Pascal’s triangle pattern using 2D Array In this tutorial, we will discuss the title of the C exercise: Pascal’s triangle using a 2D Array In this post, we are going to learn how to display the pascal triangle pattern using a 2D array in C language using for, while, and do-while loop C…
Pascal’s triangle in Java using 2D Array
Pascal’s triangle in Java using 2D Array In this tutorial, we will discuss the Title of Pascal’s triangle in Java using 2D Array In this post, we will learn how to write code to display the pascal triangle number pattern in Java language using 2 D array with for, while, and do-while loop Java program to…
C++ Program to generate pascal’s triangle using Array
C++ Program to generate pascal’s triangle using Array In this tutorial, we will discuss the C++ Program to generate a pascal’s triangle using the Array In this post, we are going to learn how to display the pascal triangle number pattern in C++ language using a single dim array with for, while, and do-while loop Program…
C Program to count number of vowels, consonants and spaces in a sentence
C Program to count number of vowels, consonants and spaces in a sentence In this article, we will discuss the concept of C Program to count number of vowels, consonants and spaces in a sentence In this post, we are going to learn how to write a program to count the total number of Vowels ,…
Java program to count vowels and consonants in a string
Java program to count vowels and consonants in a string In this article, we will discuss the concept of Java program to count vowels and consonants in a string In this post, we are going to learn how to write a program to count total number of vowels and consonants in given string input from user…
Java program to print all alphabets in given range using loops
Java program to print all alphabets in given range using loops In this article, we will discuss the concept of Java program to print all alphabets in given range using loops In this post, we are going to learn how to write a program to print all alphabets in given range using for, while and do-while …
C Program to print an array of characters
C Program to print an array of characters In this article, we will discuss the concept of C Program to print an array of characters In this post, we are going to learn how to write a program to print an array of characters (character elements in single dimensional array) using for, while and do-while …
C++ Program to print an array of characters from user
C++ Program to print an array of characters from user In this article, we will discuss the concept of C++ Program to print an array of characters from user In this post, we are going to learn how to write a program to print an array of characters (character elements in single dimensional array) using …