Switch case statement in Cpp language

Switch case statement in Cpp language In this tutorial, we will discuss the Switch case statement in Cpp language Switch statements in C++ select one option from multiple options of cases based on a switch expression. The switch case statement is similar to if else if … else ladder. but it is not as same as…

switch case statement in C language

switch case statement in C language Switch case statements In this tutorial, we will discuss switch case statement in C language The switch statement in C, select one option from multiple options of cases based on a switch expression. Switch case statements similar to if else if … else ladder but it is not same as…

Switch case statement in Java language

Switch case statement in Java language In this tutorial, we are going to discuss the Switch case statement in Java language Switch statements in Java select one option from multiple options of cases based on a switch expression. The switch statement is similar to if else if … else ladder. but it is not as same…

input output function in the C language

input output function in the C language In this tutorial, we will discuss input output function in the C  language. printf() scanf() function in C programming language The C programming language provides various built-in functions(in-built library function ) for several purposes as a mathematical calculation, string manipulation and input-output operation and many more. input-output function…

C program gets() and puts() function

C program gets() and puts() function In this tutorial, we will discuss a simple concept of the C program gets() and put() function Both the functions are used to in the input and output operation of the Strings The gets() functions are used to read string input from the keyboard and puts() function displays it….

Hollow Triangle Pattern using nested while loop in C

Hollow Triangle Pattern using nested while loop in C In this tutorial, we will discuss a concept of Hollow Triangle Pattern using nested while loop in C In this program, we are going to learn about how to display  Hollow Tringle star pattern using nested while loop in C programming  language Here, we display some…

Hollow Pyramid Pattern in C using nested while

Hollow Pyramid Pattern in C using nested while In this tutorial, we will discuss Hollow Pyramid Pattern using nested while loop in C programming language In this program, we are going to learn about how to display  Hollow Pyramid Pattern using nested while loop in C programming  language Here, we display two Hollow pyramid Pattern…

Hollow Pyramid Pattern in Cpp using nested while loop

Hollow Pyramid Pattern in Cpp using nested while loop In this tutorial, we will discuss Hollow Pyramid Pattern in Cpp using nested while loop In this program, we are going to learn about how to display  Hollow Pyramid Pattern using nested while loop in C++ language Here, we display the Hollow Pyramid Pattern program with…

Hollow Pyramid Pattern in Java using nested while

Hollow Pyramid Pattern in Java using nested while In this tutorial, we will discuss Hollow Pyramid Pattern in Java using nested while loop In this program, we are going to learn about how to display  Pyramid Pattern in Java using nested while loop in Java programming language Here, we display an Hollow Pyramid Pattern program…

Hollow Triangle star Pattern using while loop in Java

Hollow Triangle star Pattern  using nested while loop in Java In this tutorial, we will discuss the Hollow Triangle star Pattern in Java using nested while loop In this program, we are going to learn about how to display  Hollow Tringle star pattern using nested while loop in Java programming  language Here, we display some…