You are here

Page not found

Search results

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

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

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

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

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

    Yogesh Suneja - 13/03/2018 - 12:40

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

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

  8. Matrix addition in C

    Matrix addition in C language to add two matrices, i.e., compute their sum and print it. A user ... || []).push({}); Addition of two matrix in C C program for matrix addition: #include <stdio.h>   int ...

    Yogesh Suneja - 13/12/2019 - 20:30

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

    Yogesh Suneja - 20/03/2018 - 11:16

  10. Sum of n natural numbers in C

    C program to find the sum of n natural numbers using the formula and a for ... Sum of first n natural numbers = n*(n+1)/2. C program to find sum of n natural numbers #include <stdio.h> ... } Output: Sum of n natural numbers in C using a for loop #include <stdio.h> int main ( ) ...

    Yogesh Suneja - 04/11/2020 - 14:18

Pages