You are here

Page not found

Search results

  1. Subtract matrices

    C code to subtract matrices of any order. This program finds the difference between corresponding elements of two matrices and then print the resultant matrix. C program #include <stdio.h>   int main ( ) { ...

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

  2. setlinestyle in C

    ...  DASHED_LINE ,    USERBIT_LINE } ; C program #include <graphics.h> int main ( ) { ...

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

  3. sprintf in c

    Sprintf in C : It's just like printf but output is sent to a string, rather than standard ... to string. Previous content of string are overwritten. C program #include<stdio.h> int main ( ) {   ...

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

  4. Getarcoords function in C

    ... type arccoordstype is passed to function getarccoords. C program of getarccoords #include<graphics.h> #include<conio.h> ...

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

  5. getpixel function in c

    ... y). Declaration: int getpixel(int x, int y); C program for getpixel #include<graphics.h> #include<conio.h> ...

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

  6. drawpoly function in c

    ... last point(320, 150) in array is same as first. See the program below and then its output, it will further clear your understanding. C program for drawpoly #include <graphics.h> #include <conio.h> ...

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

  7. C smiling face animation

    This animation using C draws a smiling face which appears at random positions on the screen. C program #include<graphics.h> #include<conio.h> ...

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

  8. Press me button game in c, download press-me-button game

    Press me game in C:- In this game when you try to bring mouse near a button it moves away from ... very close to button we move the button suitably. C program #include <stdio.h> #include <conio.h> #include ...

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

  9. log function in C

    ... exponential number. Declaration: double log(double); C program to find logarithm of a number #include <stdio.h> ...

    Yogesh Suneja - 27/11/2019 - 18:40

  10. ceil in C - math.h

    ... passed to it. Declaration: double ceil(double); C program #include <stdio.h> #include <math.h> int main ...

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

Pages