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 ... to store a complex number. Complex numbers program in C language #include <stdio.h> struct complex {     ...

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

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

    Yogesh Suneja - 25/10/2020 - 23:45

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

    Yogesh Suneja - 31/10/2019 - 22:18

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

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

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

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

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

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

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

    Yogesh Suneja - 23/11/2019 - 12:15

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

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

  9. C program to find maximum element in a matrix

    C program to find the largest or the maximum element in a matrix. C program #include <stdio.h> int main ( ) {   ...

    Yogesh Suneja - 03/12/2019 - 22:15

  10. functions of graphics.h

    C graphics using graphics.h functions or WinBGIM (Windows 7) can be used to ... and many more. Using functions of graphics.h in Turbo C compiler you can make graphics programs, animations, projects, and games. You ... errors while using that function and a sample C graphics program with its output. (adsbygoogle = ...

    Yogesh Suneja - 29/09/2018 - 20:50

Pages