Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
~7K People Reached
Favorite Tags
Member Avatar for sk8ndestroy14

This one's new. It's just like the counting games, but in this one we count [B]DOWN [/B]so don't get confused. I'll start us off. 1000

Member Avatar for cproger
0
6K
Member Avatar for wendwessen

[code=c] #include<stdio.h> // Global variable declaration and initialization. can be used every where in the program body. static char grid[3][3] ={{' ',' ',' '}, {' ',' ',' '}, {' ',' ',' '} }; void Print()//--- to print the grid. prints the grid. { int i, j; printf("\t-------------\n"); for(i = 0; …

Member Avatar for wildgoose
0
115