You are here

Page not found

Search results

  1. C program to draw a 3d bar chart

    This C program draws a 3d bar chart. C program #include <graphics.h> #include <conio.h> int ...

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

  2. C++ program to add two arrays

    C++ program to add two arrays. C++ programming code #include<iostream> ... 20 ] , c, n ;     cout << "Enter the number of elements in the array " ;   cin >> n ;   ...

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

  3. C++ program to generate random numbers

    C++ program to print random numbers. C++ programming code #include ...   int n, t, c ;   cout << "Enter the number of random numbers you want" << endl ;   cin >> n ; ...

    Yogesh Suneja - 31/10/2019 - 19:57

  4. Print numbers without using loops

    C program to print first n natural numbers without using any loop (do-while, for, or while). In the first program, we use recursion to achieve the desired output, and in the second, we ... i.e., without creating any function other than main. C program using recursion #include <stdio.h> void print ( ...

    Yogesh Suneja - 09/10/2020 - 22:48

  5. C++ program to generate Fibonacci series

    C++ program for Fibonacci series. C++ programming code ... = 1 , next ;     cout << "Enter the number of terms of Fibonacci series you want" << endl ;     cin ...

    Yogesh Suneja - 28/12/2017 - 15:18

  6. Area of a triangle in C

    C program to find the area of a triangle using Heron's or Hero's formula. The input of the program is the lengths of sides of the triangle. The triangle exists if the sum of any of its two sides is greater than the third side. The program assumes that a user will enter valid input. C program to find area ...

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

  7. String copy in C

    C program to copy a string using library function strcpy and without using strcpy . String copy C program #include <stdio.h> #include <string.h> int ... || []).push({}); Output of program: Copy string in C without using strcpy #include ...

    Yogesh Suneja - 18/11/2019 - 19:00

  8. sqrt in C

    ... Function sqrt in C returns the square root of a number. To use it, include the "math.h" header file in the program. Declaration: double sqrt(double); Square root in C using sqrt ...

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

  9. C++ class example program

    C++ class program example: In our program, we create a class named programming with one variable and two ...

    Yogesh Suneja - 08/01/2018 - 20:44

  10. Bitwise operators in C

    ... (1). We will perform operations on individual bits. C program #include <stdio.h> main ( ) {     int ... 0 ; } Left shift operator example program #include <stdio.h> main ( ) {     int ...

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

Pages