Page not found
Search results
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
C Game Programming Tutorial
... mouse button is clicked etc. Here you will find sample source code and programs, you can also download executable files so you can understand ...
devyog - 28/07/2019 - 20:54
C programming
... 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. ... to communicate. There are many languages such as C, C++, Java, Python, and many others, each having their features. Let's discuss first ...
devyog - 10/12/2019 - 20:37
putimage function in c
... at (left, top). ptr points to the area in memory where the source image is stored. The op argument specifies a operator that controls how ... based on pixel already on screen and the corresponding source pixel in memory. Smiling face animation program using putimage. ...
devyog - 28/12/2017 - 21:34
String concatenation in C
... its length before concatenation. But, it'll increase the code size. Make a copy of the first string before concatenation. This ... 100 ] ; printf ( "Enter source string \n " ) ; gets ( original ) ; ...
devyog - 04/10/2020 - 11:26
C program to shut down or turn off computer
... 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
Paint program in C
... change the color, clear the screen. /* To understand the code see output below the code, it will help you in understanding the code. */ C paint program ...
devyog - 23/11/2019 - 12:26
Conditional compilation in C programming language
... Conditional compilation as the name implies that the code is compiled if certain condition(s) hold true. Normally we use if keyword ... so that compiler can determine whether to compile the code or not. The different thing is #if. Now consider the following code to ...
devyog - 23/11/2019 - 11:40
getdate C
Program to print current system date, getdate C code below explain how to use this function to print computer date. Getdate example C programming code to print date #include<stdio.h> #include<dos.h> main ...
devyog - 10/12/2017 - 06:21
Function overloading in C++
... double, and other data types. In the functions, the code is the same but data types are different, C++ provides a solution to this ... for different data types which will reduce the size of code by using a feature of C++ known as templates. C++ program for function ...
devyog - 31/10/2019 - 22:18