You are here

Page not found

Search results

  1. 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 ...

    adminps9 - 23/11/2019 - 11:40

  2. 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 ( ) {   ...

    adminps9 - 02/10/2020 - 00:25

  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. ...

    adminps9 - 09/10/2020 - 23:32

  4. C programs

    ... will work with GCC and Dev C++ compilers. The first program, prints "Hello World." ... , it 's a good idea to learn C before learning C++ or Java. C++ is object-oriented and contains all features of C, so learning C help ...

    adminps9 - 23/11/2021 - 20:38

  5. 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 ( ) { ...

    adminps9 - 23/11/2019 - 11:40

  6. 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 ...

    adminps9 - 23/11/2019 - 11:40

  7. C program to insert substring into a string

    C program to insert a substring into a string: This code inserts a string into ... we obtain the string "C programming is amazing". In our C program we will make a function which performs the desired task and pass three ... You can insert the string at any valid position. C program #include <stdio.h> #include <string.h> #include ...

    adminps9 - 23/11/2019 - 11:40

  8. C program to copy a file

    C program to copy a file: This program copies a file, firstly you will specify a file to copy, and then you ... copy in "read" mode and target file in "write" mode. C program #include <stdio.h> #include <stdlib.h> int ...

    adminps9 - 23/11/2019 - 11:40

  9. 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 ( ) {   ...

    adminps9 - 23/11/2019 - 11:40

  10. C program to merge two arrays

    C program to merge two arrays into another array. They are assumed to be sorted in ascending order . A user inputs them; the program combines them to get a larger array. If they aren't in ascending order, ... = window.adsbygoogle || []).push({}); C program to merge two sorted arrays // It is assumed a user will enter ...

    adminps9 - 19/11/2019 - 20:02

Pages