No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
executing EXE file sounds good.........it is easiest way to run or call any program...
*hey there , 1.you can not initialize a 2d array like this...!!!!!!!! char array1[100][100]={'ID1','srini','ID2','Albie','ID3','Kaasi'}; > char array2[50][100]={'ID1','OOPS','ID2','STS','ID1','STS','ID1','CTC','ID3','MAT','ID2','MAT'} You can initialize it as follows: char array1[3][2]={ {'ID1','srini'}, {'ID2','Albie'}, {'ID3','Kaasi'}}; char array2[6][2]={ {'ID1','OOPS'}, {'ID2','STS'}, {'ID1','STS'}, {'ID1','CTC'}, {'ID3','MAT'}, {'ID2','MAT'}}; it will also give you following error " error C2015: too many characters in …
The End.
Sky_Flyer