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 program (Turbo C compiler only) #include <stdio.h> ...

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

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

  3. 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 " ; ...

    Yogesh Suneja - 22/02/2018 - 13:39

  4. C program to delete an element from an array

    C program to delete an element in an array: This program deletes or removes an ... || []).push({}); Remove element from array C program #include <stdio.h> int main ( ) {     int array [ 100 ] , position , c , n ;     printf ( "Enter number of elements in array \n ...

    Yogesh Suneja - 11/10/2020 - 14:08

  5. sqrt in C

    Function sqrt in C returns the square root of a number. To use it, include the "math.h" header ... Declaration: double sqrt(double); Square root in C using sqrt function #include <stdio.h> #include <math.h> ... to print two decimal digits. Output of program: C program to find square root of numbers from 1 to 100 #include ...

    Yogesh Suneja - 04/11/2020 - 13:23

  6. C, C++, and Java programming

    ... in an interactive way. Here you will find tutorials on C graphics programming, mouse programming, C project development , game programming tutorial . You can download ...

    Yogesh Suneja - 29/09/2020 - 15:48

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

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

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

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

    Yogesh Suneja - 31/10/2019 - 20:06

Pages