You are here

Page not found

Search results

  1. C program for pattern matching

    Pattern matching in C: C program to check if a string is present in an another string, for example, the string "programming" is present in the string "C programming". If it's present, then its location (i.e. at which position it's ...

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

  2. C program to find the frequency of characters in a string

    C program to find the frequency of characters in a string: This program counts ... For example, in the string "code" each of the characters 'c,' 'd,' 'e,' and 'o' has occurred one time. Only lower case alphabets ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <string.h> int ...

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

  3. Function overloading in C++

    ... known as compile-time polymorphism. Function overloading C++ program #include <iostream> using namespace std ; ... ( ) {   int a, b, x ;   float c, d, y ;   cout << "Enter two integers \n " ;   ...

    Yogesh Suneja - 31/10/2019 - 22:18

  4. C program to delete a file

    C program to delete a file whose name (with extension) a user will input. The ... the file, then it will be displayed by perror function. C file deletion program #include <stdio.h> int main ( ) ... overwritten on the storage medium by other data. C programming: C programs ...

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

  5. 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 ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> struct ... x , y , z ;   struct complex a , b , c ;   while ( 1 )   {     printf ( ...

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

  6. C program remove spaces, blanks from a string

    C program to remove spaces or excess blanks from a string, For example, consider the string "C programming" There are two spaces in this string, so our program will print the string "C programming." It will remove spaces when they occur more than one time ...

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

  7. Paint program in C

    Paint program in C to draw different shapes using mouse such as line, circle, pixel and many ... the code, it will help you in understanding the code. */ C paint program #include<graphics.h> #include<dos.h> ... ( ) {     int left , top , c , color ;    left = 100 ;    top = 436 ; ...

    Yogesh Suneja - 23/11/2019 - 12:26

  8. C program to print Armstrong numbers

    C program to print Armstrong numbers, in the program, a user inputs two ... familiar with Armstrong numbers see Armstrong number in C . (adsbygoogle = window.adsbygoogle || []).push({}); C program #include <stdio.h> int check_armstrong ( int ...

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

  9. Decimal to binary in C

    Decimal to binary in C to convert an integer from decimal number system (base-10) to binary number ... = window.adsbygoogle || []).push({}); C program to convert decimal to binary #include <stdio.h> int main ( ) {   int n , c , k ;   printf ( "Enter an integer in decimal number ...

    Yogesh Suneja - 10/10/2020 - 15:27

  10. C program to check orthogonal matrix

    C program to check if a matrix is orthogonal or not. For an orthogonal matrix ... T = I. Example of an orthogonal matrix: 1 0 0 1 C program #include <stdio.h> int main ( ) {   int m , n , p , c , d , k , sum = 0 ;   int matrix [ 10 ] ...

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

Pages