You are here

Page not found

Search results

  1. C++ program to generate Fibonacci series

    C++ program for Fibonacci series. C++ programming code ...

    devyog - 28/12/2017 - 15:18

  2. C program to swap two numbers

    C program to swap two numbers with and without using third variable , using ... XOR operator. Swapping means interchanging. If the program has two variables a and b where a = 4 and b = 5, after swapping them, a = 5, b = 4. In the first C program, we use a temporary variable to swap two numbers. ...

    devyog - 19/11/2019 - 09:06

  3. C program to generate random numbers

    C program to generate pseudo-random numbers using rand and random function (Turbo ... code using rand We use modulus operator in our program. If you evaluate a % b where a and b are integers then result will ... a = 1000 and b = 100 a % b = 1000 % 100 = 0 In our program we print pseudo random numbers in range [0, 100]. So we calculate ...

    devyog - 29/09/2018 - 15:28

  4. C++ constructor example

    C++ constructor example program: Constructor are functions having name as that of the class. They do ... and are used to initialize objects. C++ constructor program example #include <iostream> using namespace std ...

    devyog - 06/02/2018 - 13:57

  5. Symmetric matrix in C

    C program to check if a matrix is symmetric or not: we find the transpose of the matrix and then compare it with the original matrix. For a symmetric matrix A, A T = A. C program to check if a matrix is symmetric or not #include<stdio.h> ...

    devyog - 03/12/2019 - 22:19

  6. Linked list in C

    ... struct node * next ; } ; Linked list program in C #include <stdio.h> #include <stdlib.h> ...

    devyog - 08/12/2019 - 00:36

  7. C program to check if an array is sorted or not (ascending or descending or none)

    C program to check if an array is sorted or not, i.e., in ascending order or descending order. Variables "a" and "d" in the program are for ascending and descending respectively and are initialized to ...

    devyog - 01/12/2019 - 08:56

  8. Press me button game in c, download press-me-button game

    ... of mouse pointer at every moment of time, whenever we find mouse pointer very close to button we move the button suitably. C program #include <stdio.h> #include <conio.h> #include ...

    devyog - 23/11/2019 - 11:40

  9. C sound program

    ... sound of a specified frequency. Used for adding music to a C program, try to use some random values in loop, vary delay and enjoy. ...

    devyog - 28/09/2018 - 10:51

  10. c program

    C program is a collection of statements. ...

    devyog - 05/07/2018 - 14:12

Pages