You are here

Page not found

Search results

  1. sleep in C

    ... seconds. Declaration: void sleep(unsigned seconds); C programming code for sleep #include <stdio.h> #include <dos.h> int ...

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

  2. grapherrormsg function in C

    ... Declaration: char *grapherrormsg( int errorcode ); C programming code for grapherrormsg #include <graphics.h> #include <stdlib.h> ...

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

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

  4. C program to reverse a number

    C program to reverse a number and to print it on the screen. For example, if the ... = window.adsbygoogle || []).push({}); C program to find reverse of a number #include <stdio.h> int ...

    Yogesh Suneja - 17/11/2019 - 21:05

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

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

  7. lineto function in C

    ... can get current position using getx and gety function. C programming code for lineto #include <graphics.h> #include <conio.h> ...

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

  8. C++ hello world program

    Hi! Are you searching for how to write a C++ hello world program? I hope I will be able to help you with that. Hello world C++ program #include <iostream> // Declaration of header using ...

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

  9. Function nosound in C

    ... off the PC speaker. Declaration: void nosound(); C programming code for nosound #include <dos.h> int main ( ) { ...

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

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

Pages