You are here

Page not found

Search results

  1. Textheight and textwidth functions in C

    ... function returns the width of a string in pixels. C program #include <graphics.h> #include <stdio.h> #include ...

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

  2. Conditional compilation in C programming language

    ... following code to quickly understand the scenario: C program #include <stdio.h> #define x 10       int ...

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

  3. cos in C - math.h

    ... Declaration: double cos(double); C program #include <stdio.h> #include <math.h> int main ...

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

  4. C smiling face animation

    ... which appears at random positions on the screen. C program #include<graphics.h> #include<conio.h> ...

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

  5. sin function in C

    ... angle(in radian). Declaration: double sin(double); C program #include <stdio.h> #include <math.h> int main ...

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

  6. getdrivername function

    ... returns a pointer to the current graphics driver. C program for getdrivername #include <graphics.h> #include ...

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

  7. getbkcolor function in C

    ... current background color is GREEN, color will be 2. C program for getbkcolor #include <graphics.h> #include <conio.h> ...

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

  8. log10

    ... log10 function returns common logarithm (base is 10) of a number. Declaration: double log10(double number); C programming code for log10 #include <stdio.h> ... ;   return 0 ; } Output of program: ...

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

  9. floor function

    ... double n , result ;   printf ( "Enter a number to round it down \n " ) ;   scanf ( "%lf" , ... floor ( n ) ;   printf ( "Original number =  %.2lf \n " , n ) ;   printf ( "Number ... ;   return 0 ; } Output of program: ...

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

  10. getx function in C

    ... of the current position. Declaration: int getx(); C program of getx #include <graphics.h> #include <conio.h> ...

    Yogesh Suneja - 16/01/2018 - 19:08

Pages