You are here

Page not found

Search results

  1. Programs

    Source codes C programs C++ programs Java programs Programs section lets you download ...

    devyog - 03/12/2019 - 22:29

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

    devyog - 23/11/2019 - 11:40

  3. C Programming Tutorials

    C programs with output C Graphics programming tutorial ... tutorial Game Programming Tutorial Open source software The tutorials section of programming simplified. ... discussed with its complete description and a sample source code, you can also download the executable file. Game programming tutorials ...

    devyog - 14/11/2019 - 23:44

  4. C programming

    To quickly learn C language you must start writing programs in it. To do so you need a text editor and a compiler to translate a source program into machine code that can be executed directly on a machine. Dev C++ IDE is a good choice, ...

    devyog - 10/12/2019 - 20:37

  5. Pattern programs in C

    Pattern programs in C language, showing how to create various patterns of numbers and stars. The ... inputs the numbers of rows to print. Pattern program in C #include <stdio.h> int main ( ) {   int ... ** *** **** ***** to print above pattern see the code below: Star pattern in C #include <stdio.h> int ...

    devyog - 02/10/2020 - 00:19

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

    devyog - 29/09/2018 - 20:50

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

    devyog - 18/11/2019 - 22:17

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

    devyog - 27/11/2019 - 20:55

  9. Binary search in C

    Binary search in C language to find an element in a sorted array. If the array isn't sorted, ... || []).push({}); Binary search program in C #include <stdio.h> int main ( ) {   int c , first , last , middle , n , search , array [ 100 ] ...

    devyog - 14/10/2020 - 19:11

  10. String length in C

    C program to find length of a string, for example, the length of the string "C programming" is 13 (space character is counted). The null character isn't ... it. To find it, we can use strlen function of "string.h." C program to find length of a string without using strlen function , ...

    devyog - 22/10/2020 - 21:08

Pages