first of all include the stdafx file in double quotes
#include "stdafx.h".I don't think that it is necessary to include this file in ur program. Removing it will not cause u any trouble.
Also u have declared the array as char aTablica1[64];
and u have initialized the array elements from
aTablical[0]-aTablical[64]. It must be till aTablical[63].
Note the when working with arrays the upperbound is always 1 less than
the actual size of the array since the first array element begins at position 0. Note that it is not an error to initialize ur array outside its boundaries the compiler will not issue an error for this.
Also check for this statement this may be the place where u r getting error.
aTablica1[38]='//';Try removing one of the forward slash from it.
|