You are here

Page not found

Search results

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

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

  3. Bitwise operators in C

    Bitwise operators in C programming language: In this tutorial I am going to discuss bitwise operators with example C programs. As you know data is stored in memory in the form of bits and a bit ... one (1). We will perform operations on individual bits. C program #include <stdio.h> main ( ) {     int ...

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

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

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

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

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

  8. setlinestyle in C

    ...  DASHED_LINE ,    USERBIT_LINE } ; C program #include <graphics.h> int main ( ) {   int gd = DETECT , gm , c , x = 100 , y = 50 ;   initgraph ( & gd ...

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

  9. Getarcoords function in C

    ... type arccoordstype is passed to function getarccoords. C program of getarccoords #include<graphics.h> #include<conio.h> ... ] ;    initgraph ( & gd , & gm , "C: \\ TC \\ BGI" ) ;    arc ( 250 , 200 , 0 ...

    Yogesh Suneja - 12/10/2020 - 22:47

  10. assert in C

    ... assert(int expression); The expression can be any valid C language expression many a time it is a condition. In the program, we ... the condition that does not hold (see image below). C assert program #include <stdio.h> #include ...

    Yogesh Suneja - 02/10/2020 - 16:14

Pages