You are here

Page not found

Search results

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

    devyog - 23/11/2019 - 11:40

  2. C++ program to add two numbers

    C++ program to add two numbers. C++ programming code #include <iostream> using namespace ... ; int main ( ) {     int a, b, c ;         cout << "Enter two integers to add \n " ; ...

    devyog - 22/02/2018 - 13:39

  3. C program to list files of a directory

    C program to list all files, present in a directory/folder, in which its ... present. For example, if the executable file is present in C:\\TC\\BIN, then it will list all the files present in C:\\TC\\BIN. C program (Turbo C compiler only) #include <stdio.h> ...

    devyog - 24/11/2019 - 13:47

  4. C++ programs

    C++ programming language is a powerful and widely used object-oriented programming language. Given below are some C++ programs. C++ language programs C++ Hello World program C++ program to ...

    devyog - 31/10/2019 - 22:25

  5. C program to print date

    C program to print current system date. To print date, we will use getdate function. C programming code (Works in Turbo C only) #include <stdio.h> #include <conio.h> #include ...

    devyog - 13/03/2018 - 12:40

  6. C program to reverse a number

    C program to reverse a number and to print it on the screen. For example, if ... = window.adsbygoogle || []).push({}); C program to find reverse of a number #include <stdio.h> int ... Download Reverse number program. Reverse number C program using recursion #include <stdio.h> long reverse ( ...

    devyog - 17/11/2019 - 21:05

  7. Web browser project in C, C program to open a website/url

    C program to open a website entered by a user. It will launch Mozilla Firefox ... web browser then you can change path in the program. C program #include <stdio.h> #include <conio.h> #include ... ] , * ptr ;   char a [ ] = "C: \\ Progra~1 \\ Mozill~1 \\ firefox " ;     strcpy ( ...

    devyog - 23/11/2019 - 11:40

  8. C++ program to add two matrices

    C++ program to add two matrices. C++ matrix addition program #include <iostream> using ... ;   int main ( ) {   int m, n, c, d, first [ 10 ] [ 10 ] , second [ 10 ] [ 10 ...

    devyog - 31/10/2019 - 20:06

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

    devyog - 10/10/2020 - 15:27

  10. C++ inline function program

    ... writing the keyword inline before defining the function. C++ programming code #include <iostream> using namespace ... ) ; int main ( ) {   char c ;       cout << "Enter a character \n " ;   ...

    devyog - 20/03/2018 - 11:16

Pages