You are here

Page not found

Search results

  1. C program to merge two arrays

    C program to merge two arrays into another array. They are assumed to be sorted ... = window.adsbygoogle || []).push({}); C program to merge two sorted arrays // It is assumed a user will ...

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

  2. Anagram program in C

    Anagram program in C to check whether two strings are anagrams or not. They are assumed ... and "CAB" are anagrams, as every character, 'A,' 'B,' and 'C' occur the same number of times (one time here) in both the strings. A ...

    Yogesh Suneja - 09/10/2020 - 23:32

  3. C program to get IP address

    C program to print IP (Internet Protocol) address of your computer, system ... works for Windows XP and Windows 7. If you are using Turbo C compiler then execute this program from the folder, it may not work when you ...

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

  4. C program to copy a file

    C program to copy a file: This program copies a file, firstly you will specify a ... to 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

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

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

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

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

  7. C++ program to add two arrays

    C++ program to add two arrays. C++ programming code #include<iostream> using namespace ...

    Yogesh Suneja - 31/10/2019 - 20:16

  8. C program to find maximum and minimum number in an array

    C program to find the maximum and minimum number in an array. A user will input ... find the largest and the smallest number in the array. C program #include <stdio.h> int main ( ) {   ...

    Yogesh Suneja - 24/11/2019 - 00:12

  9. C program to find next prime palindrome

    C program to find next prime palindrome: a user will enter a number, and we have ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <math.h> int ...

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

  10. C program to convert string to integer without using atoi function

    C program to convert string to integer: It is frequently required to convert a ... to an integer but we will create our own function. C program // C program to convert string to integer without using atoi ...

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

Pages