You are here

Page not found

Search results

  1. Addition of two numbers in C

    The addition of two numbers in C language is the arithmetic operation of adding them and printing their sum on ... || []).push({}); Addition program in C #include <stdio.h> int main ( ) {   int ...

    Yogesh Suneja - 25/10/2020 - 18:22

  2. C project development tutorial

    C project development tutorial: This tutorial is for all those who wish to make their project in C programming language. Let me tell that you need not be an expert in ... can be a trouble. 2) Always create a back up of your source code, you start your project by writing some portion and it works fine ...

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

  3. C program to insert substring into a string

    C program to insert a substring into a string: This code inserts a string into the source string. For example,if the source string is "C programming" and string to insert is " is amazing" (please note there is ...

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

  4. C Programming Tutorials

    C programs with output C Graphics programming tutorial Project Development Tutorial ... tutorial Game Programming Tutorial Open source software The tutorials section of programming simplified. ...

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

  5. 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 array [ 100 ] , search , c , n ;   printf ( "Enter number of elements in array \n " ...

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

  6. functions of graphics.h

    C graphics using graphics.h functions or WinBGIM (Windows 7) can be used to ... and many more. Using functions of graphics.h in Turbo C compiler you can make graphics programs, animations, projects, and games. You ... possible errors while using that function and a sample C graphics program with its output. ...

    Yogesh Suneja - 29/09/2018 - 20:50

  7. C program to find minimum value in an array

    C program to find the minimum or the smallest element in an array. It also ... = window.adsbygoogle || []).push({}); C program to find smallest number in an array #include <stdio.h> ... {   int array [ 100 ] , size , c , location = 0 ;   printf ( "Enter number of ...

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

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

  9. Reverse array in C

    C program to reverse an array using an additional array , using swapping ... || []).push({}); Reverse array C program #include <stdio.h> int main ( ) {   int n , c , d , a [ 100 ] , b [ 100 ] ;   printf ...

    Yogesh Suneja - 27/11/2019 - 20:55

  10. Hello world program in C

    How to write a hello world program in C language? To learn a programming language, you must start writing programs in it, and this could be your first C program. Let's have a look at the program first. #include <stdio.h> ...

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

Pages