You are here

Page not found

Search results

  1. C program to get IP address

    C program to print IP (Internet Protocol) address of your computer, system ... 7. If you are using Turbo C compiler then execute this program from the folder, it may not work when you are working in a compiler and ... = window.adsbygoogle || []).push({}); C program #include<stdlib.h> int main ( ) {   ...

    devyog - 23/11/2019 - 11:40

  2. C program to copy a file

    C program to copy a file: This program copies a file, firstly you will specify a file to copy, and then you ... copy in "read" mode and target file in "write" mode. C program #include <stdio.h> #include <stdlib.h> int ...

    devyog - 23/11/2019 - 11:40

  3. C program to insert substring into a string

    C program to insert a substring into a string: This code inserts a string into ... we obtain the string "C programming is amazing". In our C program we will make a function which performs the desired task and pass three ... You can insert the string at any valid position. C program #include <stdio.h> #include <string.h> #include ...

    devyog - 23/11/2019 - 11:40

  4. C program remove spaces, blanks from a string

    C program to remove spaces or excess blanks from a string, For example, consider ... programming" There are two spaces in this string, so our program will print the string "C programming." It will remove spaces when ... = window.adsbygoogle || []).push({}); C program #include <stdio.h>   int main ( ) { ...

    devyog - 23/11/2019 - 11:40

  5. C program to find nCr and nPr

    C program to find nCr and nPr, remember, nCr = n!/(r!*(n-r)!) and nPr = n!/(n-r)!. C program to find nPr and nCr using a function #include <stdio.h> ... return result ; } Download NCR and NPR program. Output of program: Another way to calculate nPr and nCr ...

    devyog - 22/11/2019 - 19:42

  6. Print an int (integer) in C

    ... and we print it. Input is done using scanf function, and the number is printed on screen using printf. C program to print an int (integer) #include <stdio.h>   int ...

    devyog - 12/10/2020 - 22:40

  7. C program to merge two files

    C program to merge two files and store their contents in another file. The files ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> int ... return 0 ; } Download merge files program. Output of program: C programming: C ...

    devyog - 23/11/2019 - 11:40

  8. C program to restrict mouse pointer

    This program restricts mouse pointer in a rectangle. When this program is executed the mouse pointer is restricted in a rectangle i.e. you can't move mouse pointer out of the rectangle. /* Program to restrict mouse-pointer */ C program #include<dos.h> ...

    devyog - 23/11/2019 - 11:40

  9. C program to swap two strings

    C program to swap two strings, i.e., their contents are interchanged. C program #include <stdio.h> #include <string.h> int ... return 0 ; } Download Swap strings program. Output of program: C programming: C ...

    devyog - 23/11/2019 - 11:40

  10. C program to change case of a string

    ... You can also implement functions using pointers. C program to change the case from upper to lower and lower to upper The following program changes the case of alphabets. If a lower/upper case alphabet is ...

    devyog - 01/12/2019 - 08:56

Pages