You are here

Page not found

Search results

  1. C program to print diamond pattern

    ... || []).push({}); Diamond pattern program in C #include <stdio.h> int main ( ) { ... int n , c , k ;   printf ( "Enter number of rows \n " ) ;   scanf ( "%d" , & n ) ...

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

  2. C program to find the largest of three numbers

    C program to find the largest of three numbers: User will input three integers and the program will find the largest of them. If all the numbers are the same then the ... > y && x > z )     printf ( "First number is largest. \n " ) ;   else if ( y > x && ...

    Yogesh Suneja - 30/10/2019 - 22:45

  3. Paint program in C

    Paint program in C to draw different shapes using mouse such as line, circle, pixel ... it will help you in understanding the code. */ C paint program #include<graphics.h> #include<dos.h> ...

    Yogesh Suneja - 23/11/2019 - 12:26

  4. C program for pattern matching

    Pattern matching in C: C program to check if a string is present in an another string, for example, the ... We are implementing naive string search algorithm in this program. (adsbygoogle = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <string.h> int ...

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

  5. C program to add two numbers using pointers

    C program for the addition of two numbers using pointers. In the program, we have two integer variables x and y and two pointer variables p and ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> int main ( ) {   ...

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

  6. C program to find HCF and LCM

    C program to find HCF and LCM: The code below finds the highest common factor and ... || []).push({}); Download HCF and LCM program. Output of program: C program to find hcf and lcm using recursion ...

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

  7. C program to sort a string in alphabetic order

    C program to sort a string in alphabetic order: For example, if a user inputs a ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> #include ... || []).push({}); Output of program: C program using pointers #include <stdio.h> ...

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

  8. C program to delete an element from an array

    C program to delete an element in an array: This program deletes or removes an element from an array. A user will enter the ... position , c , n ;     printf ( "Enter number of elements in array \n " ) ;     scanf ( "%d" , ...

    Yogesh Suneja - 11/10/2020 - 14:08

  9. Function overloading in C++

    ... two or more functions can have the same name, but either the number of arguments or the data type of arguments has to be different. In the ... integers and another for adding two floats. In the second program, we make two functions with identical names but pass them a different ...

    Yogesh Suneja - 31/10/2019 - 22:18

  10. Web browser project in C, C program to open a website/url

    C program to open a website entered by a user. It will launch Mozilla Firefox web ... using an another web browser then you can change path in the program. C program #include <stdio.h> #include <conio.h> #include ...

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

Pages