User Profile
Collapse
-
I will just ask you a different question, how can i create a program that will display my name and then it will blink and move forward?, it is like an illusion please help me man!!!! it's in turbo c! -
We use the graphics library for this. The output of the program is not a text but square shapes with colors inside it. each squares contains different colors, it is 3 rows and five columns. The total number of squares are 15 pieces.
please help me>tnx<.Leave a comment:
-
how to create 15 squares with different colors in C or C++
Hi! does anyone out there knows how to create a pragram in C/C++ that
displays 15 squares with colors inside it here's the sample output:
_______ _________
1 1 1 1
1 RED 1 1 BLUE 1 and so on!!!!......... ............... ,
1 1 1 1
1_______1 ... -
hey Jhendrix! you're too lucky because I know how to create that shitty-ass output, here's the code for ya!!!!!!!!!:
#include<stdio. h>
main()
{
int x,y;
for (x=1;x<=5;++x) {
printf("\n");
for (y=1;y<=x;++y)
printf("*"); }
getch();
return 0;
}
that's so simple!!!Leave a comment:
No activity results to display
Show More
Leave a comment: