Page not found
Search results
C program to print date
C program to print current system date. To print date, we will use getdate ...
adminps9 - 13/03/2018 - 12:40
C program to display mouse pointer in textmode
/* Program to display mouse-pointer in text-mode */ #include<dos.h> ...
adminps9 - 26/02/2018 - 17:36
Delay function in C
... Delay in C: delay function is used to suspend execution of a program for a particular time. Declaration: void delay(unsigned int); ... 1 second = 1000 milliseconds). To use delay function in your program you should include the "dos.h" header file which is not a part of ...
adminps9 - 29/09/2018 - 13:46
C++ inline function program
Inline function: You can make a function inline by writing the keyword inline before defining the function. ...
adminps9 - 20/03/2018 - 11:16
Palindrome number in C
... same, it's a palindrome otherwise not. C palindrome string program . (adsbygoogle = window.adsbygoogle || []).push({}); C program for palindrome number #include <stdio.h> int main ( ...
adminps9 - 09/10/2020 - 23:18
Decimal to binary in C
... = window.adsbygoogle || []).push({}); C program to convert decimal to binary #include <stdio.h> int ... || []).push({}); Output of the program: Download Decimal binary program. This code only ...
adminps9 - 10/10/2020 - 15:27
Programs
... codes C programs C++ programs Java programs Programs section lets you download hundreds of source ... is also provided as an image so that you can understand a program better. Source codes are divided into various categories ranging ...
adminps9 - 03/12/2019 - 22:29
C++ programs
... programs. C++ language programs C++ Hello World program C++ program to add two numbers C++ program to reverse a number C++ ...
adminps9 - 31/10/2019 - 22:25
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 a new string and process input string character by ... = window.adsbygoogle || []).push({}); C program to remove vowels from a string #include <stdio.h> ...
adminps9 - 11/10/2020 - 23:29
Getarcoords function in C
... type arccoordstype is passed to function getarccoords. C program of getarccoords #include<graphics.h> #include<conio.h> ... ) ; return 0 ; } In the program, we have drawn an arc, and then we get the coordinates of its endpoints ...
adminps9 - 12/10/2020 - 22:47