You are here

Page not found

Search results

  1. Anagram program in C

    Anagram program in C to check whether two strings are anagrams or not. They are assumed to contain ... 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 ... = window.adsbygoogle || []).push({}); C anagram program #include <stdio.h> int check_anagram ( ...

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

  2. Linked list in C

    ... * next ; } ; Linked list program in C #include <stdio.h> #include <stdlib.h> struct node ... will help you to learn the tree data structure. C programming: C programs ...

    Yogesh Suneja - 08/12/2019 - 00:36

  3. C++ program to reverse a number

    C++ program to reverse a number using a class. It can be used to check if an integer is a palindrome or not. C++ program to reverse a number #include <iostream> using ... std ; class Operations {   long c ; public :   void inputNumber ( )   {   ...

    Yogesh Suneja - 22/11/2019 - 22:04

  4. C++ program for prime numbers

    C++ program to print first n prime numbers. C++ program #include <iostream> #include <cmath> using ...     int n, status = 1 , num = 3 , count, c ;     cout << "Enter the number of prime numbers to print ...

    Yogesh Suneja - 22/11/2019 - 22:07

  5. Transpose of a matrix in C

    Transpose of a matrix in C language: This C program prints transpose of a matrix. To obtain it, we interchange rows and ... = window.adsbygoogle || []).push({}); C program to find transpose of a matrix #include <stdio.h>   ...

    Yogesh Suneja - 13/12/2019 - 20:54

  6. Palindrome number in C

    ... If both are the same, it's a palindrome otherwise not. C palindrome string program . (adsbygoogle = window.adsbygoogle || []).push({}); C program for palindrome number #include <stdio.h> int main ...

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

  7. 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 ... [ 100 ] , b [ 100 ] , m , n , c , sorted [ 200 ] ;   printf ( "Input number of ...

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

  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 ( ) {   int a [ 100 ] , size , c , l , L ;   printf ( "Enter the number of elements in ...

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

  9. C program to restrict mouse pointer in a circle

    C program #include<graphics.h> #include<conio.h> ... ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;     if ( ! initmouse ( ) ... ) ;     return 0 ; } C programming: Mouse Programs ...

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

  10. 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 ... strings program. Output of program: C programming: C programs ...

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

Pages