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

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

  3. Remove vowels from a string in C

    C program to remove or delete vowels from a string. If the input is "C programming," then the output is "C prgrmmng." In the program, we create ...

    Yogesh Suneja - 11/10/2020 - 23:29

  4. Selection sort in C

    Selection sort in C to sort numbers of an array in ascending order. With a little modification, ... || []).push({}); Selection sort program in C #include <stdio.h> int main ( ) {   int ...

    Yogesh Suneja - 25/10/2020 - 14:26

  5. getch in C

    Function getch in C program prompts a user to press a character. It doesn't show up on the screen. ... header file. The function is not a part of standard C library. C programming code for getch #include <stdio.h> ...

    Yogesh Suneja - 14/12/2019 - 21:35

  6. 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 ... (1). We will perform operations on individual bits. C program #include <stdio.h> main ( ) {     int ...

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

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

  8. 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 add two numbers C++ program to reverse a ...

    Yogesh Suneja - 31/10/2019 - 22:25

  9. Print numbers without using loops

    C program to print first n natural numbers without using any loop (do-while, for, ... 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

  10. Delay function in C

    Delay in C: delay function is used to suspend execution of a program for a particular time. Declaration: void delay(unsigned int); ... the "dos.h" header file which is not a part of standard C library. (adsbygoogle = window.adsbygoogle ...

    Yogesh Suneja - 29/09/2018 - 13:46

Pages