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

    devyog - 26/02/2018 - 17:36

  2. Symmetric matrix in C

    C program to check if a matrix is symmetric or not: we find the transpose of the ... matrix. For a symmetric matrix A, A T = A. C program to check if a matrix is symmetric or not #include<stdio.h> ... ] [ 10 ] ;   printf ( "Enter the number of rows and columns of matrix \n " ) ;   scanf ( ...

    devyog - 03/12/2019 - 22:19

  3. C++ inline function program

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

    devyog - 20/03/2018 - 11:16

  4. String concatenation in C

    C program to concatenate two strings; for example, if the two input strings are ... to dot it without using the library function, see another program below. (adsbygoogle = ... || []).push({}); C concatenate string program #include <stdio.h> #include <string.h> int ...

    devyog - 04/10/2020 - 11:26

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

    devyog - 05/01/2018 - 00:48

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

    devyog - 04/11/2020 - 13:21

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

    devyog - 11/10/2020 - 23:29

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

    devyog - 23/11/2019 - 11:40

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

    devyog - 12/12/2019 - 00:47

  10. String compare in C

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

    devyog - 05/12/2019 - 08:50

Pages