+ 4
C programming project, please help to build the following program
A simple project in C that generates random shapes to resemble English characters and then asks users to identify them. You may base a login system around this concept.
2 Antworten
+ 10
you will hard find here someone who give you complete project solution, i think that is better idead that you start alone and then if you need some help you can ask for it...
+ 1
First you should teach your Program each character by using an array[n][n]. there you define each character like
00100
01010
11111
10001
10001 that could be an ‘A’
Then you go through the array and when there is a 1 then you generate random shapes.