You are here

Page not found

Search results

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

    devyog - 04/11/2020 - 13:21

  2. C program to print a string

    ... functions such as printf, puts. Consider the following code: printf ( "Hi there! How are you doing?" ) ; ...

    devyog - 14/10/2020 - 21:18

  3. Bubble sort in C

    ... Bubble sort program in C /* Bubble sort code */ #include <stdio.h> int main ( ) {   ...

    devyog - 14/10/2020 - 21:14

  4. Decimal to binary in C

    ... Download Decimal binary program. This code only prints binary of an integer. Still, we may wish to perform operations ...

    devyog - 10/10/2020 - 15:27

  5. C substring, substring in C

    ... we do not need to return the substring array. See another code below in which we return a pointer to substring, which we create in our ...

    devyog - 02/10/2020 - 16:44

  6. Pattern programs in C

    ... ** *** **** ***** to print above pattern see the code below: Star pattern in C #include <stdio.h> int ...

    devyog - 02/10/2020 - 00:19

  7. C program to find HCF and LCM

    C program to find HCF and LCM: The code below finds the highest common factor and the least common multiple of two ...

    devyog - 10/12/2019 - 20:50

  8. Floodfill function

    ... To change fill pattern and fill color use setfillstyle. Code given below draws a circle and then fills it. C program ...

    devyog - 01/12/2019 - 08:56

  9. C program to print diamond pattern

    The diamond pattern in C language: This code prints a diamond pattern of stars. The diamond shape is as follows: ...

    devyog - 26/11/2019 - 22:50

  10. C program to find the frequency of characters in a string

    ... how many times in the string. For example, in the string "code" each of the characters 'c,' 'd,' 'e,' and 'o' has occurred one time. Only ...

    devyog - 23/11/2019 - 11:40

Pages