You are here

Page not found

Search results

  1. String compare in C

    How to compare strings in C? You can use do it using strcmp function , without strcmp function and ... = window.adsbygoogle || []).push({}); C compare strings #include <stdio.h> #include <string.h> ... || []).push({}); Output of program: Download Compare Strings program. C string comparison ...

    Yogesh Suneja - 05/12/2019 - 08:50

  2. C++ program to add two complex numbers

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

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

  3. Leap year program in C

    Leap year program in C to check if a year is a leap year or not, a leap year is one that ... || []).push({}); Leap year C program   #include <stdio.h> int main ( ) { ...

    Yogesh Suneja - 02/10/2020 - 00:25

  4. C program to restrict mouse pointer

    This program restricts mouse pointer in a rectangle. When this program is executed ... rectangle. /* Program to restrict mouse-pointer */ C program #include<dos.h> #include<graphics.h> ... , gm ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    settextstyle ( DEFAULT_FONT , 0 ...

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

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

  6. C program to move a car

    Program in C using graphics to move a car. A car is made using two rectangles ... = window.adsbygoogle || []).push({}); C program #include <graphics.h> #include <dos.h> #include ...

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

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

  8. C program to hide mouse pointer

    This program hides mouse pointer. We require to hide mouse pointer when we want to ... Program to show and hide mouse-pointer alternatively */ C program #include<graphics.h> #include<conio.h> ... , gm ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    status = initmouse ( ) ; ...

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

  9. C program to get current position of mouse pointer

    This program prints the x and y coordinates of current position of mouse pointer ... to get mouse-pointer coordinates - where is the mouse */ C program #include<graphics.h> #include<conio.h> ... 50 ] ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    settextstyle ( DEFAULT_FONT , 0 ...

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

  10. C program to determine which mouse button is clicked

    This program print which mouse button is clicked whether left or right, coordinates ... Program to determine which mouse button is clicked */ C program #include<graphics.h> #include<conio.h> ... 50 ] ;    initgraph ( & gd ,& gm , "C: \\ TC \\ BGI" ) ;    settextstyle ( DEFAULT_FONT , 0 ...

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

Pages