You are here

Page not found

Search results

  1. Leap year program in C

    Leap year program in C to check if a year is a leap year or not, a leap year is one that ... divisible by 400. Read more about a Leap year . The program is based on the Gregorian Calendar. ... || []).push({}); Leap year C program   #include <stdio.h> int main ( ) {   ...

    Yogesh Suneja - 02/10/2020 - 00:25

  2. Area of a circle in C

    C program to find the area of a circle: C programming code to calculate the area of a circle. In the program, we use 3.14159 as the value of Pi (ϖ). To compute it, we need to know ...

    Yogesh Suneja - 04/11/2020 - 13:21

  3. Anagram program in C

    Anagram program in C to check whether two strings are anagrams or not. They are assumed ... || []).push({}); C anagram program #include <stdio.h> int check_anagram ( char ... || []).push({}); Output of C anagram program: Download Anagram program. ...

    Yogesh Suneja - 09/10/2020 - 23:32

  4. C program to add two complex numbers

    C program to add two complex numbers: this program performs addition of two complex numbers which will be entered by a ... real and imaginary parts of two complex numbers. In our program we will add real parts and imaginary parts of complex numbers and ...

    Yogesh Suneja - 23/11/2019 - 11:40

  5. Arithmetic operations in C

    C program to perform basic arithmetic operations of addition, subtraction, ... = float. So we convert denominator to float in our program, you may also write float in the numerator. This explicit conversion is ... = window.adsbygoogle || []).push({}); C program for arithmetic operations #include <stdio.h> int ...

    Yogesh Suneja - 11/10/2020 - 01:08

  6. Selection sort in C

    ... Selection sort algorithm (for ascending order) Find the minimum element in the array and swap it with the element in the ... || []).push({}); Selection sort program in C #include <stdio.h> int main ( ) { ...

    Yogesh Suneja - 25/10/2020 - 14:26

  7. C program to count number of vowels in a string

    C program to count number of vowels in a string: for example, in the string "love" there are two vowels 'o' and 'e'. In the program both lower and upper case are considered i.e., 'a', 'A', 'e', 'E', 'i', 'I', 'o', 'O', 'u' and 'U'. In this program we check every character in the input string, if it's a vowel then ...

    Yogesh Suneja - 23/11/2019 - 11:40

  8. C program to get IP address

    C program to print IP (Internet Protocol) address of your computer, system ... 7. If you are using Turbo C compiler then execute this program from the folder, it may not work when you are working in a compiler and ... = window.adsbygoogle || []).push({}); C program #include<stdlib.h> int main ( ) {   ...

    Yogesh Suneja - 23/11/2019 - 11:40

  9. C program remove spaces, blanks from a string

    C program to remove spaces or excess blanks from a string, For example, consider ... programming" There are two spaces in this string, so our program will print the string "C programming." It will remove spaces when ... = window.adsbygoogle || []).push({}); C program #include <stdio.h>   int main ( ) { ...

    Yogesh Suneja - 23/11/2019 - 11:40

  10. C program to convert string to integer without using atoi function

    C program to convert string to integer: It is frequently required to convert a ... as soon as a non digit character is encountered but in our program we will handle ideal case when only valid characters are present in ... to an integer but we will create our own function. C program // C program to convert string to integer without using atoi ...

    Yogesh Suneja - 23/11/2019 - 11:40

Pages