You are here

Page not found

Search results

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

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

  3. Insertion sort in C

    Insertion sort in C: C program for insertion sort to sort numbers. This code implements insertion sort algorithm to arrange numbers of an array in ...

    Yogesh Suneja - 12/11/2019 - 14:29

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

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

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

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

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

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

  8. C program to add two numbers using pointers

    C program for the addition of two numbers using pointers. In the program, we ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> int main ( ) {   ... || []).push({}); Output of program: C program to add numbers using call by reference #include <stdio.h> ...

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

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

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

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

    Yogesh Suneja - 17/11/2019 - 21:05

Pages