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

    Yogesh Suneja - 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?" ) ; ...

    Yogesh Suneja - 14/10/2020 - 21:18

  3. Bubble sort in C

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

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

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

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

    Yogesh Suneja - 02/10/2020 - 00:19

  7. C read file

    ... Read file in C using fopen C programming code to open a file and print its contents on screen. #include ...

    Yogesh Suneja - 25/10/2020 - 21:59

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

    Yogesh Suneja - 10/12/2019 - 20:50

  9. Floodfill function

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

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

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

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

Pages