Twenty asterisks
For programmers
0
0
13.01.2010
A text of a C code is given below. Find three different ways to replace one symbol so that the resulting code would print 20 asterisks. A symbol has to be replaced, not added or deleted.
main() { int i, N=20; for (i = 0 ; i < N ; i--) { printf("*"); } }
3 commentaries