Navigation
Main
Forums
Chat
Contact Me

C
About C
Tutorials
FAQ
Code Archive
Downloads
Challanges
Links To C Sites

C++
About C++
Tutorials
FAQ
Code Archive
Downloads
Challanges
Links To C++ Sites

HTML
About HTML
Tutorials
FAQ
Code Archive
Downloads
Challanges
Links To HTML Sites

Java
About Java
Tutorials
FAQs
Code Archive
Downloads
Challanges
Links To Java Sites

mIRC
About mIRC
Tutorials
FAQs
Code Archive
Downloads
Challanges
Links To mIRC Sites

C++ Challanges


Suggest a challange.

If you complete a challange go to the downloads page and send it to me!

(1) Create a program that lets you enter the height and width of a shape then have the program draw it on the screen.

(2) Create a program that draws a random maze using '.'s for the path and '#'s for the walls. The outside should be all walls, except an entrance and an exit. Every maze should be possible!

(3) Create a read(file.name,line number) funtion. Used like this: variable = read(file.txt,2). Assuming the second line of file.txt was 1000, variable would equal 1000.