You are here

Page not found

Search results

  1. C program to display mouse pointer in textmode

    /* Program to display mouse-pointer in text-mode */ #include<dos.h> ...

    Yogesh Suneja - 26/02/2018 - 17:36

  2. Area of a circle in C

    C program to find the area of a circle: C programming code to calculate the area of a circle. In the program, we use 3.14159 as the value of Pi (ϖ). To compute it, we need to know ... circumference, we find the radius from it. Let's write the program now. Area of a circle program in C #include <stdio.h> ...

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

  3. C++ inline function program

    Inline function: You can make a function inline by writing the keyword inline before defining the function. ...

    Yogesh Suneja - 20/03/2018 - 11:16

  4. switch case in C

    switch is a keyword of C language. Example C program explaining use of switch #include<stdio.h> main ( ) ...   int n ;         printf ( "Enter a number from 1, 2 or 3. \n " ) ;     scanf ( "%d" , ...

    Yogesh Suneja - 05/01/2018 - 00:48

  5. Remove vowels from a string in C

    C program to remove or delete vowels from a string. If the input is "C programming," then the output is "C prgrmmng." In the program, we create a new string and process input string character by ... = window.adsbygoogle || []).push({}); C program to remove vowels from a string #include <stdio.h> ...

    Yogesh Suneja - 11/10/2020 - 23:29

  6. Matrix multiplication in C

    ... ] [ 10 ] ;     printf ( "Enter number of rows and columns of first matrix \n " ) ;   scanf ( ... An output of 3 X 3 matrix multiplication C program: Download Matrix multiplication program. There are ...

    Yogesh Suneja - 12/12/2019 - 00:47

  7. Getarcoords function in C

    ... type arccoordstype is passed to function getarccoords. C program of getarccoords #include<graphics.h> #include<conio.h> ... ) ;     return 0 ; } In the program, we have drawn an arc, and then we get the coordinates of its endpoints ...

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

  8. Draw shapes using C graphics

    This C graphics program draws basic shapes such as circle, line, rectangle, ellipse and display ... on screen using C graphics. This can be a first graphics program for a beginner. C program #include<graphics.h> #include<conio.h> main ( ...

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

  9. String compare in C

    ... || []).push({}); Output of program: Download Compare Strings program. C string comparison program We can create a function to ...

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

  10. Floodfill function

    ... Code given below draws a circle and then fills it. C program #include <graphics.h> #include <conio.h> main ( ... ;     return 0 ; } In the above program a circle is drawn in RED color. Point (100,100) lies inside the circle ...

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

Pages