CSPrograms4u
Nothing Succeeds Like Success
Home
About
C
Programs
Numbers
Patterns
Conversions
C Practical File
PPTs
CPP
Programs
PPTs
CG
Programs
PPTs
DS
Programs
PPTs
Python
Programs
Java
Programs
PPT
Practical File
C#
Programs
PPTs
VB
Programs
PPTs
VB 2010
Programs
PPTs
Saturday, 17 February 2018
Stars on the Screen
//Program showing stars on the screen
#include <stdlib.h>
#include<graphics.h>
#include <stdio.h>
void main()
{
int gd=DETECT,gm,i;
initgraph(&gd,&gm,"C:\\TurboC3\\BGI");
for(i=1;i<=500;i++)
{
putpixel(rand()%500,rand()%500,rand()%500);
setcolor(rand()%10);
delay(100);
}
getch();
closegraph();
}
No comments:
Post a Comment
Note: only a member of this blog may post a comment.
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Followers
Total Pageviews
Popular Posts
Java Arrays
1. 1 D Array 2. 2 D Array 3. Matrix Addition 4. Matrix Substraction 5. Matrix Multiplication 6. Transpose of a Matrix ...
Classes Objects and Methods in JAVA
Program No 1:- Use of class in Java Program No 2:- default constructor in Java Program No 3:- Parameterized Constructor in Java Pro...
1D Array
import java.util.Scanner; public class Array1D { public static void main(String args[]) { Scanner sc=new Scanner(Sy...
Matrix Addition
package Mobile.Arrays; import java.util.Scanner; public class Matrix_Addition { public static void main(String args[]) { ...
No comments:
Post a Comment
Note: only a member of this blog may post a comment.