You are here

Page not found

Search results

  1. C++ program to add two complex numbers

    C++ program to add two complex numbers. C++ programming code #include <iostream> using namespace std ; ...

    Yogesh Suneja - 13/07/2018 - 12:29

  2. 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. ... void sound(unsigned frequency); C programming code for sound (Turbo C compiler only) #include <dos.h> int ...

    Yogesh Suneja - 28/09/2018 - 10:51

  3. C++ program to generate Fibonacci series

    C++ program for Fibonacci series. C++ programming code #include<iostream> using namespace ...

    Yogesh Suneja - 28/12/2017 - 15:18

  4. Scope resolution operator in C++

    Scope resolution operator (::) in C++ is used to define a function outside a class or when we want to use a ... but also has a local variable with the same name. C++ programming code #include <iostream> using namespace std ;   ...

    Yogesh Suneja - 31/10/2019 - 20:55

  5. C++ program to generate random numbers

    C++ program to print random numbers. C++ programming code #include <iostream> #include <cstdlib> using ...

    Yogesh Suneja - 31/10/2019 - 19:57

  6. C++ class example program

    C++ class program example: In our program, we create a class named programming ... create an object of this class and call these functions. C++ programming code #include<iostream> using namespace std ; ...

    Yogesh Suneja - 08/01/2018 - 20:44

  7. rectangle function in c

    ... specifies the Y-coordinate of right bottom corner. The code given below draws a rectangle. C programming code for rectangle #include<graphics.h> ...

    Yogesh Suneja - 05/07/2018 - 14:10

  8. Line function in c

    ... i.e. (x1,y1) and (x2,y2) are end points of the line.The code given below draws a line. Declaration: void line(int x1, int y1, int x2, int y2); C programming code for line #include <graphics.h> #include ...

    Yogesh Suneja - 08/01/2018 - 20:55

  9. gotoxy in C

    gotoxy in C: gotoxy function places cursor at a desired location on screen i.e., we can ... y) is the position where we want to place the cursor. C programming code for gotoxy // Works in Turbo C compiler only #include ...

    Yogesh Suneja - 10/10/2018 - 17:33

  10. getpixel and putpixel functions in C

    ... plots a pixel at a point(x, y) of the specified color. C programming code for getpixel and putpixel #include<graphics.h> ...

    Yogesh Suneja - 22/11/2019 - 20:43

Pages