Home
C Program to Addition Subtraction,Multiplication and division
C Program to Addition Subtraction, Multiplication and division In this tutorial, we will discuss C Program to Addition Subtraction, Multiplication and division In this post, we will learn about how to perform addition, subtraction multiplication, division of any two numbers using if else statements in C programming The program will request the user to enter…
Read MoreCpp program to Addition Subtraction,Multiplication and division
Cpp program to Addition Subtraction, Multiplication and division In this tutorial, we will discuss Cpp program to Addition Subtraction, Multiplication and division In this post, we will learn how to perform addition, subtraction multiplication, division of any two numbers using if else statements in Cpp programming The program will request the user to enter…
Read More- On
- By
- 0 Comment
- Categories: Function in Python, function/method
Python language Recursive function
Python language Recursive function In this tutorial, we discuss Python language Recursive function. When a function calls itself it is called as recursion. The python language allows creating the recursive function to perform a special task The following example explains how to find the adding of the limited natural numbers using the recursive function Example…
Read MoreSwitch 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…
Read Moreswitch 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…
Read MoreSwitch 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…
Read More- On
- By
- 0 Comment
- Categories: Basic, Basic C language
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…
Read More- On
- By
- 0 Comment
- Categories: Basic, Basic C language
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….
Read More- On
- By
- 0 Comment
- Categories: Floyd's triangle, star pattern
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…
Read More- On
- By
- 0 Comment
- Categories: pyramid triangle, star pattern
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…
Read More