You are here

Page not found

Search results

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

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

  2. Captcha program in C

    C program to generate a captcha which is a random string generated using an ... to check whether a human is operating a website. C captcha program #include <stdlib.h> #include <dos.h> ...

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

  3. C program to check orthogonal matrix

    C program to check if a matrix is orthogonal or not. For an orthogonal matrix AA T = I. Example of an orthogonal matrix: 1 0 0 1 C program #include <stdio.h> int main ( ) {   ...

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

  4. Area of a triangle in C

    C program to find the area of a triangle using Heron's or Hero's formula. The ... The program assumes that a user will enter valid input. C program to find area of a triangle #include <stdio.h> #include ...

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

  5. C Programming Tutorials

    C programs with output C Graphics programming tutorial ... tutorial Game Programming Tutorial Open source software The tutorials section of programming simplified. ... discussed with its complete description and a sample source code, you can also download the executable file. Game programming tutorials ...

    Yogesh Suneja - 14/11/2019 - 23:44

  6. C program to get IP address

    C program to print IP (Internet Protocol) address of your computer, system ... prints IP address, subnet mask, and default gateway. The code given below 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

  7. C program to find nCr and nPr

    C program to find nCr and nPr, remember, nCr = n!/(r!*(n-r)!) and nPr = n!/(n-r)!. C program to find nPr and nCr using a function #include <stdio.h> ...

    Yogesh Suneja - 22/11/2019 - 19:42

  8. 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 ( ) ...

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

  9. C program to insert an element in an array

    C program to insert an element in an array, for example, consider an array a[10] ... = window.adsbygoogle || []).push({}); C program #include <stdio.h>   int main ( ) { ...

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

  10. C program to add two complex numbers

    C program to add two complex numbers: this program performs addition of two ... to store a complex number. Complex numbers program in C language #include <stdio.h> struct complex {     ...

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

Pages