You are here

Page not found

Search results

  1. Prime number program in C

    Prime number program in C language to check whether a number is prime or composite , to ... || []).push({}); Output of program: Download Prime number program. C program for prime number or not #include<stdio.h> ...

    Yogesh Suneja - 01/10/2020 - 23:20

  2. Binary search in C

    Binary search in C language to find an element in a sorted array. If the array isn't sorted, you must sort it ... is present in the list, then we print its location. The program assumes that the input numbers are in ascending order. ... || []).push({}); Binary search program in C #include <stdio.h> int main ( ) { ...

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

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

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

  6. C program to print diamond pattern

    ... || []).push({}); Diamond pattern program in C #include <stdio.h> int main ( ) { ... || []).push({}); Output of program: Download Diamond program. C program to print diamond using recursion #include ...

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

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

  8. C program to print Armstrong numbers

    C program to print Armstrong numbers, in the program, a user inputs two integers, and we print all Armstrong numbers between ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> int check_armstrong ( int ...

    Yogesh Suneja - 14/12/2019 - 21:39

  9. C program to add, subtract, multiply and divide Complex Numbers, complex arithmetic

    C program to add, subtract, multiply and divide complex numbers. It is a menu driven program in which a user will have to enter his/her choice to perform an ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> struct ...

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

  10. C program to reverse words in a string

    C program to reverse words in a string or sentence, for example, if the input ... Then repeat the previous step until the string ends. C program #include <stdio.h> #include <string.h> void ... --;   } } Download Reverse words program. Output of program: ...

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

Pages