You are here

Page not found

Search results

  1. C program to find roots of a quadratic equation

    C program to find roots of a quadratic equation: Coefficients are assumed to be ... may not be real. For a quadratic equation ax 2 + bx + c = 0 (a≠0), discriminant (b 2 -4ac) decides the nature of roots. If it's ... equation sum of its roots = -b/a and product of its roots = c/a. Let's write the program now. ...

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

  2. C graphics programs

    All these programs have been made using C graphics. Program for various type of charts and other interesting things and patterns. C graphics programs Draw shapes Bar chart Pie chart ...

    Yogesh Suneja - 19/05/2018 - 17:21

  3. C++ constructor example

    C++ constructor example program: Constructor are functions having name as that ... have return type and are used to initialize objects. C++ constructor program example #include <iostream> using ...

    Yogesh Suneja - 06/02/2018 - 13:57

  4. C++ class example program

    C++ class program example: In our program, we create a class named programming ... create an object of this class and call these functions. C++ programming code #include<iostream> using namespace ...

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

  5. switch case in C

    switch is a keyword of C language. Example C program explaining use of switch #include<stdio.h> main ( ...       return 0 ; }   C programming: C programs ...

    Yogesh Suneja - 05/01/2018 - 00:48

  6. C source code

    C source code examples: Given below is a list of C projects, C source code for games and applications. They are provided for free with ...

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

  7. Data structures in C

    Data structures in C are an inevitable part of programs. Computer programs frequently process ... operations on different data structures by implementing C programs. (adsbygoogle = window.adsbygoogle || []).push({}); C data structures programs Array programs Maximum element in ...

    Yogesh Suneja - 12/12/2019 - 19:05

  8. C program to find next prime palindrome

    C program to find next prime palindrome: a user will enter a number, and we ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <math.h> int ... ) {   long n , t , r = 0 , c , d ;   printf ( "Enter an integer \n " ) ;   ...

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

  9. C program to convert string to integer without using atoi function

    C program to convert string to integer: It is frequently required to convert a ... to an integer but we will create our own function. C program // C program to convert string to integer without using atoi function ...

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

  10. pow function in C

    ... Declaration: double pow(double, double); Function pow in C language #include <stdio.h> #include <math.h> int main ( ) {   double c , d , result ;   printf ( "Enter c and d to calculate ...

    Yogesh Suneja - 27/11/2019 - 18:54

Pages