You are here

Page not found

Search results

  1. C program to insert an element in an array

    C program to insert an element in an array, for example, consider an array a[10] ... = window.adsbygoogle || []).push({}); C program #include <stdio.h>   int main ( ) { ...

    devyog - 23/11/2019 - 11:40

  2. C program to generate random numbers

    C program to generate pseudo-random numbers using rand and random function (Turbo C compiler only). As the random numbers are generated by an algorithm used in a ...

    devyog - 29/09/2018 - 15:28

  3. C program to add two complex numbers

    C program to add two complex numbers: this program performs addition of two ... to store a complex number. Complex numbers program in C language #include <stdio.h> struct complex {     ...

    devyog - 23/11/2019 - 11:40

  4. Function overloading in C++

    ... integers and another for adding two floats. In the second program, we make two functions with identical names but pass them a different ... known as compile-time polymorphism. Function overloading C++ program #include <iostream> using namespace std ; ...

    devyog - 31/10/2019 - 22:18

  5. Fibonacci series in C

    Fibonacci series in C using a loop and recursion . You can print as many terms of the series as ... || []).push({}); Fibonacci series program in C #include <stdio.h> int main ( ) {   int ...

    devyog - 25/10/2020 - 23:45

  6. C program to delete duplicate elements from an array

    C program to delete duplicate elements from an array. For example, if an array ... element we get the following array: 1, 6, 2, 9. C program #include <stdio.h> int main ( ) {   ...

    devyog - 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 the source string. For example,if the source string is "C programming" and string to insert is " is amazing" (please note there is ...

    devyog - 23/11/2019 - 11:40

  8. Captcha program in C

    C program to generate a captcha which is a random string generated using an ... to check whether a human is operating a website. C captcha program #include <stdlib.h> #include <dos.h> ...

    devyog - 23/11/2019 - 12:15

  9. C program to check subsequence

    C program to check Subsequence; don't confuse it with substring. In our program, ... is of smaller or equal length than the second string. C subsequence program #include <stdio.h> #include <string.h> ...

    devyog - 25/10/2020 - 14:07

  10. traffic light program in c, traffic light simulation

    Traffic light Simulation: Traffic light program in C presents what happens in our daily life at traffic light signals. ...

    devyog - 23/11/2019 - 11:40

Pages