You are here

Page not found

Search results

  1. 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 ( ) {   ... ;   return 0 ; } Output of program: Enter number of elements in array 10 Enter 10 integers 1 5 1 2 ...

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

  2. C program to hide mouse pointer

    This program hides mouse pointer. We require to hide mouse pointer when we want to ... with drawing, after that we again make it visible. /* Program to show and hide mouse-pointer alternatively */ C program #include<graphics.h> #include<conio.h> ...

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

  3. C program to get current position of mouse pointer

    This program prints the x and y coordinates of current position of mouse pointer ... of that point will be printed on the screen. /* Program to get mouse-pointer coordinates - where is the mouse */ C program #include<graphics.h> #include<conio.h> ...

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

  4. C program to draw pie chart

    This C program draws a pie chart showing percentage of various components drawn with different filling styles and colors. C program /* Program to draw a pie chart */ #include<graphics.h> ...

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

  5. C program to move a car

    Program in C using graphics to move a car. A car is made using two rectangles ... speed or lesser the delay your car will move fast. In this program color of the car also keeps on changing, this is accomplished by ... = window.adsbygoogle || []).push({}); C program #include <graphics.h> #include <dos.h> #include ...

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

  6. Print an int (integer) in C

    ... and the number is printed on screen using printf. C program to print an int (integer) #include <stdio.h>   int ... || []).push({}); Output of the program: C program to print first hundred positive integers [1, 100] ...

    Yogesh Suneja - 12/10/2020 - 22:40

  7. Print numbers without using loops

    C program to print first n natural numbers without using any loop (do-while, for, or while). In the first program, we use recursion to achieve the desired output, and in the second, we ... i.e., without creating any function other than main. C program using recursion #include <stdio.h> void print ( ...

    Yogesh Suneja - 09/10/2020 - 22:48

  8. C++ program to reverse a string

    C++ program to reverse a string that a user will input, for example, if the user ... "hello," then "olleh" will be printed as output. C++ program #include <iostream> #include <cstring> using ...

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

  9. C program to draw a 3d bar chart

    This C program draws a 3d bar chart. C program #include <graphics.h> #include <conio.h> int ...

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

  10. C program to display mouse pointer in graphics mode

    This program displays mouse pointer in graphics mode. First graphics mode is initialized and then mouse using initmouse. C program #include<graphics.h> #include<conio.h> ...

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

Pages