Page not found
Search results
C program to merge two files
C program to merge two files and store their contents in another file. The files ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> #include <stdlib.h> int ... return 0 ; } Download merge files program. Output of program: C programming: C ...
adminps9 - 23/11/2019 - 11:40
C program to insert an element in an array
C program to insert an element in an array, for example, consider an array a[10] ... = window.adsbygoogle || []).push({}); C program #include <stdio.h> int main ( ) { ... || []).push({}); Output of program: Download Insert element in array program. C ...
adminps9 - 23/11/2019 - 11:40
C program to restrict mouse pointer
This program restricts mouse pointer in a rectangle. When this program is executed the mouse pointer is restricted in a rectangle i.e. you can't move mouse pointer out of the rectangle. /* Program to restrict mouse-pointer */ C program #include<dos.h> ...
adminps9 - 23/11/2019 - 11:40
C program to swap two strings
C program to swap two strings, i.e., their contents are interchanged. C program #include <stdio.h> #include <string.h> int ... return 0 ; } Download Swap strings program. Output of program: C programming: C ...
adminps9 - 23/11/2019 - 11:40
Arithmetic operations in C
C program to perform basic arithmetic operations of addition, subtraction, ... = float. So we convert denominator to float in our program, you may also write float in the numerator. This explicit conversion is ... = window.adsbygoogle || []).push({}); C program for arithmetic operations #include <stdio.h> int ...
adminps9 - 11/10/2020 - 01:08
C program to change case of a string
... You can also implement functions using pointers. C program to change the case from upper to lower and lower to upper The following program changes the case of alphabets. If a lower/upper case alphabet is ...
adminps9 - 01/12/2019 - 08:56
C program to list files of a directory
C program to list all files, present in a directory/folder, in which its ... it will list all the files present in C:\\TC\\BIN. C program (Turbo C compiler only) #include <stdio.h> #include ... You will get a different output when you execute the program on your computer. C programming: C programs ...
adminps9 - 24/11/2019 - 13:47
C program to get current position of mouse pointer
This program prints the x and y coordinates of current position of mouse pointer ... of that point will be printed on the screen. /* Program to get mouse-pointer coordinates - where is the mouse */ C program #include<graphics.h> #include<conio.h> ...
adminps9 - 23/11/2019 - 11:40
C program to draw pie chart
This C program draws a pie chart showing percentage of various components drawn with different filling styles and colors. C program /* Program to draw a pie chart */ #include<graphics.h> ...
adminps9 - 23/11/2019 - 11:40
C program to move a car
Program in C using graphics to move a car. A car is made using two rectangles ... speed or lesser the delay your car will move fast. In this program color of the car also keeps on changing, this is accomplished by ... = window.adsbygoogle || []).push({}); C program #include <graphics.h> #include <dos.h> #include ...
adminps9 - 23/11/2019 - 11:40