You are here

Page not found

Search results

  1. sqrt in C

    Function sqrt in C returns the square root of a number. To use it, include the "math.h" header ... Declaration: double sqrt(double); Square root in C using sqrt function #include <stdio.h> #include <math.h> ... = 4.242641 √ 19 = 4.358899 √ 20 = 4.472136 √ 21 = 4.582576 √ 22 = ...

    Yogesh Suneja - 04/11/2020 - 13:23

  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. ... = 200 ; a <= 1000 ; a = a + 20 )     {       sound ( a ) ;       delay ( ...

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

  3. Captcha program in C

    C program to generate a captcha which is a random string generated using an ... to check whether a human is operating a website. C captcha program #include <stdlib.h> #include <dos.h> ...   setcolor ( GREEN ) ;   outtextxy ( x , 20 , "CAPTCHA" ) ;   settextstyle ( SCRIPT_FONT , ...

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

  4. traffic light program in c, traffic light simulation

    Traffic light Simulation: Traffic light program in C presents what happens in our daily life at traffic light signals. Firstly ... + 80 ) ;    circle ( midx , midy , 20 ) ;    setfillstyle ( SOLID_FILL , YELLOW ) ;   ...

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

  5. bar3d function in c

    ... To change fill pattern and fill color use setfillstyle. C program of bar3d #include<graphics.h> #include<conio.h> ... ( 100 , 100 , 200 , 200 , 20 , 1 ) ;     getch ( ) ;    closegraph ...

    Yogesh Suneja - 01/12/2019 - 08:56

  6. Static method in Java with example

    ...         result = Math . min ( 10 , 20 ) ; //calling static method min by writing class name     ...

    Yogesh Suneja - 04/12/2019 - 20:12

  7. graphdefaults function in c

    ... Sets the default text font and justification. C programming source code for graphdefaults #include <graphics.h> #include ...

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

  8. textheight function in c

    ... pixels. Declaration: int textheight(char *string); C programming source code for textheight #include<graphics.h> ...

    Guest (not verified) - 08/01/2018 - 20:55

  9. Textwidth function in c

    ... in pixels. Declaration: int textwidth(char *string); C programming source code for textwidth #include <stdio.h> #include ...

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

  10. Arc function in C

    ... angle and end angle should be 0 and 360 respectively. C programming source code for arc #include <graphics.h> #include <conio.h> ...

    Yogesh Suneja - 03/10/2018 - 18:04

Pages