Page not found
Search results
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 ...
devyog - 14/12/2019 - 21:35
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 ...
devyog - 13/03/2018 - 12:40
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 ... Output of program: C programming code using pointers #include<stdio.h> #include<stdlib.h> ...
devyog - 11/10/2020 - 23:29
C program remove spaces, blanks from a string
C program to remove spaces or excess blanks from a string, For example, consider the string "C programming" There are two spaces in this string, so our program will ... program. Output of program: C programming code using pointers #include <stdio.h> #include <string.h> ...
devyog - 23/11/2019 - 11:40
C program to copy a file
C program to copy a file: This program copies a file, firstly you will specify ... to copy in "read" mode and target file in "write" mode. C program #include <stdio.h> #include <stdlib.h> int main ( ) { char ch , source_file [ 20 ] , target_file [ 20 ] ; FILE ...
devyog - 23/11/2019 - 11:40
C++ program to add two numbers
C++ program to add two numbers. C++ programming code #include <iostream> using namespace ...
devyog - 22/02/2018 - 13:39
C++ new operator example
C++ new operator example: C++ code using "new" operator to allocate memory on heap dynamically. C++ ...
devyog - 11/12/2019 - 11:11
C++ program to add two arrays
C++ program to add two arrays. C++ programming code #include<iostream> using namespace ...
devyog - 31/10/2019 - 20:16
Delay function in C
Delay in C: delay function is used to suspend execution of a program for a particular ... the "dos.h" header file which is not a part of standard C library. (adsbygoogle = window.adsbygoogle ... || []).push({}); C programming code for delay #include<stdio.h> #include<stdlib.h> main ...
devyog - 29/09/2018 - 13:46
C graphics tutorial
This tutorial is for all those who wish to learn C graphics programming, no knowledge of graphics concepts is required. C ... help of the following sample program: Sample graphics code #include<graphics.h> #include<conio.h> int main ...
devyog - 29/09/2018 - 14:15