You are here

Page not found

Search results

  1. Data structures in C

    Data structures in C are an inevitable part of programs. Computer programs frequently process ... unique advantages. We can choose which one to use in our program according to our requirements once we are familiar with different of ... operations on different data structures by implementing C programs. (adsbygoogle = window.adsbygoogle ...

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

  2. Linear search in C

    Linear search in C to find whether a number is present in an array. If it's present, then at ... || []).push({}); Linear search program in C #include <stdio.h> int main ( ) {   int ... Linear search C program for multiple occurrences In the code below we will print all locations at which required element is found and ...

    Yogesh Suneja - 13/12/2019 - 21:04

  3. C program to find the largest number in an array

    C program to find the largest number in an array using a function and ... = window.adsbygoogle || []).push({}); C program to find largest number in an array #include <stdio.h> ...

    Yogesh Suneja - 11/10/2020 - 11:19

  4. C++ program to generate random numbers

    C++ program to print random numbers. C++ programming code #include <iostream> #include <cstdlib> using ...

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

  5. C++ program to add two complex numbers

    C++ program to add two complex numbers. C++ programming code #include <iostream> using namespace std ; ...

    Yogesh Suneja - 13/07/2018 - 12:29

  6. C program to shut down or turn off computer

    C program to shut down your computer, i.e., to turn off a computer system. ... to run an executable file "shutdown.exe" which is present in C:\WINDOWS\system32 folder in Windows 7 & XP. See Windows XP and Linux programs ... the folder. Press F9 to build your executable file from source program. When you run program from within the compiler by pressing ...

    Yogesh Suneja - 18/11/2019 - 22:17

  7. getch in C

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

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

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

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

  9. C program to check subsequence

    C program to check Subsequence; don't confuse it with substring. In our program, ... is of smaller or equal length than the second string. C subsequence program #include <stdio.h> #include <string.h> ...

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

  10. C++ program to generate Fibonacci series

    C++ program for Fibonacci series. C++ programming code #include<iostream> using namespace ...

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

Pages