C program to calculate sum of prime numbers between 1 to n In this article, we will discuss the concept of C program to calculate sum of prime numbers between 1 to n. In this code, we are going to learn how to find sum of prime numbers 1 to n using different methods in C…
Tag: C language
C code to calculate Electricity bill | C example
C code to calculate Electricity bill In this article, we will discuss the concept of C code to calculate Electricity bill In this program, we are going to learn how to calculate electricity bill using different methods in C language. This is done using if else-if , function, in C language Program to calculate Electricity bill…
Code to Display all prime numbers in an intervals of C
Code to Display all prime numbers in an intervals of C In this article, we will discuss the concept of Code to Display all prime numbers in an intervals of C In this program, we are going to learn how to write the code to display prime numbers between two intervals using different methods in…
C language Leap Year Program|C Program
C language Leap Year Program|C Program In this article, we will discuss the concept of C language Leap Year Program In this Program, we are going to learn how to make sure the given year whether leap year or not using different methods in C language. This is done using if-else , if-else if-else, Nested…
C code to display prime numbers from 1 to 100 or 1 to n
C code to display prime numbers from 1 to 100 or 1 to n In this article, we will discuss the concept of C code to display prime numbers from 1 to 100 or 1 to n In this code, we are going to learn how to print prime number from 1 to 100 or…
Code to count Positive, Negative and zero in an array of C
Code to count Positive, Negative and zero in an array of C In this article, we will discuss the concept of Code to count Positive, Negative numbers and zero in an array of C language In this program, we are going to learn how to count the Positive numbers, Negative numbers and zeros in an…
Multiplication table of a number in given range using C
Multiplication table of a number in given range using C In this article, we will discuss the concept of Multiplication table of a number in given range using C In this program, we are going to learn how to generate a multiplication table using several ways in C language. This is done using for loop ,…
C program to Generate multiplication table
C program to Generate multiplication table In this article, we will discuss the concept of C program to Generate multiplication table. In this program, we are going to learn how to generate a multiplication table in C programming language. This is done using for loop , while loop , do-while loop , function and recursion…
Program to find if the given number is positive or negative or 0 in C
Program to find if the given number is positive or negative or 0 in C In this tutorial, we will discuss the Program to find if the given number is positive or negative or 0 in C In this post, we are going to learn how to check whether the given number is positive or Negative…
C Check whether the number is odd or even using operators
C Check whether the number is odd or even using operators In this tutorial, we will discuss the Program to C Check whether the number is odd or even using operators In this post, we are going to learn how to check whether the given number is odd or even number using operator in C…