You are here

Page not found

Search results

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

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

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

  3. C program to merge two arrays

    C program to merge two arrays into another array. They are assumed to be sorted in ascending order . A user inputs them; the program combines them to get a larger array. If they aren't in ascending order, ... = window.adsbygoogle || []).push({}); C program to merge two sorted arrays // It is assumed a user will enter ...

    Yogesh Suneja - 19/11/2019 - 20:02

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

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

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

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

  6. C program to insert an element in an array

    C program to insert an element in an array, for example, consider an array a[10] ... = window.adsbygoogle || []).push({}); C program #include <stdio.h>   int main ( ) { ... || []).push({}); Output of program: Download Insert element in array program. C ...

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

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

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

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

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

  9. C program to list files of a directory

    C program to list all files, present in a directory/folder, in which its ... it will list all the files present in C:\\TC\\BIN. C program (Turbo C compiler only) #include <stdio.h> #include ... You will get a different output when you execute the program on your computer. C programming: C programs ...

    Yogesh Suneja - 24/11/2019 - 13:47

  10. C program to hide mouse pointer

    This program hides mouse pointer. We require to hide mouse pointer when we want to ... with drawing, after that we again make it visible. /* Program to show and hide mouse-pointer alternatively */ C program #include<graphics.h> #include<conio.h> ...

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

Pages